summaryrefslogtreecommitdiff
path: root/src/responder/pac/pacsrv_cmd.c
AgeCommit message (Collapse)AuthorFilesLines
2012-10-26pac responder: add user principal and name alias to cached user objectSumit Bose1-2/+3
The principal name for the user is generated with the user name and the domain from the PAC. It is stored in the cache so that if e.g. can be used by password authentication. Additionally the name alias is stored to allow case-insensitive searches.
2012-10-26pac responder: use only lower case user nameSumit Bose1-2/+10
Since winbind can only return lower-cased user name the pac responder must do the same to avoid inconsistent behaviour.
2012-09-24SYSDB: Remove unnecessary domain parameter from several sysdb callsJakub Hrozek1-2/+1
The domain can be read from the sysdb object. Removing the domain string makes the API more self-contained.
2012-06-21Add range support to PAC responderSumit Bose1-2/+4
2012-06-21PAC responder: add the core functionalitySumit Bose1-1/+470
This adds support for parsing PAC and storing information contained within. In particular the user and all his memberships are stored. In case it is necessary, getgrgid() requests are sent to provider for group resolution.
2012-06-21PAC responder: add basic infrastructureSumit Bose1-0/+61
This adds only the basic outline of the PAC responder, it won't support any operations, it will just start and initialize itself.