<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sssd.git/src/util, branch rhel7.0</title>
<subtitle>sssd with jhrozek's patches</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/'/>
<entry>
<title>LDAP: Ignore returned referrals if referral support is disabled</title>
<updated>2014-10-14T09:04:41+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2014-08-20T12:00:38+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=b224c49b8f0a9cdf343a443fdf2190dc6f047508'/>
<id>b224c49b8f0a9cdf343a443fdf2190dc6f047508</id>
<content type='text'>
Reviewed-by: Pavel Reichl &lt;preichl@redhat.com&gt;
(cherry picked from commit a2ea3f5d9ef9f17efbb61e942c2bc6cff7d1ebf2)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-by: Pavel Reichl &lt;preichl@redhat.com&gt;
(cherry picked from commit a2ea3f5d9ef9f17efbb61e942c2bc6cff7d1ebf2)
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Fix names of arguments in doxygen comments</title>
<updated>2014-02-26T22:30:11+00:00</updated>
<author>
<name>Lukas Slebodnik</name>
<email>lslebodn@redhat.com</email>
</author>
<published>2014-02-13T16:46:29+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=02e3c4dad405464c2f0cec97203a98e5fb251273'/>
<id>02e3c4dad405464c2f0cec97203a98e5fb251273</id>
<content type='text'>
Reviewed-by: Pavel Březina &lt;pbrezina@redhat.com&gt;
(cherry picked from commit 3b35ff47651e4893ce537a273466766b962362da)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-by: Pavel Březina &lt;pbrezina@redhat.com&gt;
(cherry picked from commit 3b35ff47651e4893ce537a273466766b962362da)
</pre>
</div>
</content>
</entry>
<entry>
<title>UTIL: Sanitize whitespaces.</title>
<updated>2014-02-26T09:42:21+00:00</updated>
<author>
<name>Lukas Slebodnik</name>
<email>lslebodn@redhat.com</email>
</author>
<published>2014-02-24T10:37:52+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=1c4109bf7f16016cf0b53cd73e7b80e0d87be660'/>
<id>1c4109bf7f16016cf0b53cd73e7b80e0d87be660</id>
<content type='text'>
Original patches submitted by: mpesari(Thanks!!)

It can cause problems if user will hit spaces before entering username.
(e.g in gdm). Spaces are ignored by LDAP; it's better to escape them.

Resolves:
https://fedorahosted.org/sssd/ticket/1955

Reviewed-by: Jakub Hrozek &lt;jhrozek@redhat.com&gt;
(cherry picked from commit 2b8208b45feb2aab64d560d3e12e01e7b6d00d39)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Original patches submitted by: mpesari(Thanks!!)

It can cause problems if user will hit spaces before entering username.
(e.g in gdm). Spaces are ignored by LDAP; it's better to escape them.

Resolves:
https://fedorahosted.org/sssd/ticket/1955

Reviewed-by: Jakub Hrozek &lt;jhrozek@redhat.com&gt;
(cherry picked from commit 2b8208b45feb2aab64d560d3e12e01e7b6d00d39)
</pre>
</div>
</content>
</entry>
<entry>
<title>LDAP: Detect the presence of POSIX attributes</title>
<updated>2014-02-12T15:14:19+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2013-12-16T17:36:12+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=3b0d429051648a1545de528ec760c4823088a1d9'/>
<id>3b0d429051648a1545de528ec760c4823088a1d9</id>
<content type='text'>
When the schema is set to AD and ID mapping is not used, there is a one-time
check ran when searching for users to detect the presence of POSIX
attributes in LDAP. If this check fails, the search fails as if no entry
was found and returns a special error code.

The sdap_server_opts structure is filled every time a client connects to
a server so the posix check boolean is reset to false again on connecting
to the server.

It might be better to move the check to where the rootDSE is retrieved,
but the check depends on several features that are not known to the code
that retrieves the rootDSE (or the connection code for example) such as what
the attribute mappings are or the authentication method that should be used.

Reviewed-by: Sumit Bose &lt;sbose@redhat.com&gt;
Reviewed-by: Pavel Březina &lt;pbrezina@redhat.com&gt;
(cherry picked from commit e81deec535d11912b87954c81a1edd768c1386c9)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When the schema is set to AD and ID mapping is not used, there is a one-time
check ran when searching for users to detect the presence of POSIX
attributes in LDAP. If this check fails, the search fails as if no entry
was found and returns a special error code.

The sdap_server_opts structure is filled every time a client connects to
a server so the posix check boolean is reset to false again on connecting
to the server.

It might be better to move the check to where the rootDSE is retrieved,
but the check depends on several features that are not known to the code
that retrieves the rootDSE (or the connection code for example) such as what
the attribute mappings are or the authentication method that should be used.

Reviewed-by: Sumit Bose &lt;sbose@redhat.com&gt;
Reviewed-by: Pavel Březina &lt;pbrezina@redhat.com&gt;
(cherry picked from commit e81deec535d11912b87954c81a1edd768c1386c9)
</pre>
</div>
</content>
</entry>
<entry>
<title>utils: handling NULL params in sss_parse_name</title>
<updated>2014-02-12T10:04:42+00:00</updated>
<author>
<name>Pavel Reichl</name>
<email>preichl@redhat.com</email>
</author>
<published>2014-01-26T12:39:43+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=6ab5595ec7360bd4cc4c0494a1e0afedda701961'/>
<id>6ab5595ec7360bd4cc4c0494a1e0afedda701961</id>
<content type='text'>
Reviewed-by: Jakub Hrozek &lt;jhrozek@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-by: Jakub Hrozek &lt;jhrozek@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>UTIL: Inherit parent domain's default_shell</title>
<updated>2014-01-15T22:03:53+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2014-01-14T09:55:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=14bafb02c396396e04412a4981b98ae75534294a'/>
<id>14bafb02c396396e04412a4981b98ae75534294a</id>
<content type='text'>
Some override parameters were not inherited when creating subdomains.
Especially with AD trusts, this gave strange results.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some override parameters were not inherited when creating subdomains.
Especially with AD trusts, this gave strange results.
</pre>
</div>
</content>
</entry>
<entry>
<title>LDAP: Add a new error code for malformed access control filter</title>
<updated>2014-01-09T11:32:03+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2014-01-08T16:12:17+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=91ab35daf713e146dfae53a67f6b86b424c897d5'/>
<id>91ab35daf713e146dfae53a67f6b86b424c897d5</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/2164

The patch adds a new error code and special cases the new code so that
access is denied and a nicer log message is shown.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/2164

The patch adds a new error code and special cases the new code so that
access is denied and a nicer log message is shown.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use lower-case name for case-insensitive searches</title>
<updated>2013-12-19T19:26:07+00:00</updated>
<author>
<name>Sumit Bose</name>
<email>sbose@redhat.com</email>
</author>
<published>2013-12-13T10:44:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=b0af402f8201d28922892b18792474f4ec546f36'/>
<id>b0af402f8201d28922892b18792474f4ec546f36</id>
<content type='text'>
The patch makes sure that a completely lower-cased version of a fully
qualified name is used for case insensitive searches. Currently there
are code paths where the domain name was used as configured and was not
lower-cased.

To make sure this patch does not break with old entries in the cache or
case sensitive domains a third template was added to the related filters
templates which is either filled with a completely lower-cased version or
with the old version. The other two template values are unchanged.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The patch makes sure that a completely lower-cased version of a fully
qualified name is used for case insensitive searches. Currently there
are code paths where the domain name was used as configured and was not
lower-cased.

To make sure this patch does not break with old entries in the cache or
case sensitive domains a third template was added to the related filters
templates which is either filled with a completely lower-cased version or
with the old version. The other two template values are unchanged.
</pre>
</div>
</content>
</entry>
<entry>
<title>SSSD: Improved domain detection</title>
<updated>2013-12-02T03:57:56+00:00</updated>
<author>
<name>Pavel Reichl</name>
<email>pavel.reichl@redhat.com</email>
</author>
<published>2013-11-14T21:34:51+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=3cf1217a277d1103a8956e33fc0a8464227e2dd2'/>
<id>3cf1217a277d1103a8956e33fc0a8464227e2dd2</id>
<content type='text'>
A bit more elegant way of detection of what domain the group member belongs to

Resolves:
https://fedorahosted.org/sssd/ticket/2132
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A bit more elegant way of detection of what domain the group member belongs to

Resolves:
https://fedorahosted.org/sssd/ticket/2132
</pre>
</div>
</content>
</entry>
<entry>
<title>monitor: Specific error message for missing sssd.conf</title>
<updated>2013-12-02T03:57:24+00:00</updated>
<author>
<name>Pavel Reichl</name>
<email>pavel.reichl@redhat.com</email>
</author>
<published>2013-11-19T11:24:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/jhrozek/public_git/sssd.git/commit/?id=08134dde5a6c8b23cf40ec8f0020cd553af2667e'/>
<id>08134dde5a6c8b23cf40ec8f0020cd553af2667e</id>
<content type='text'>
Specific error message is logged for missing sssd.conf file. New sssd specific
error value is introduced for this case.

Resolves:
https://fedorahosted.org/sssd/ticket/2156
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Specific error message is logged for missing sssd.conf file. New sssd specific
error value is introduced for this case.

Resolves:
https://fedorahosted.org/sssd/ticket/2156
</pre>
</div>
</content>
</entry>
</feed>
