~ubuntu-branches/ubuntu/precise/nss-pam-ldapd/precise-security

« back to all changes in this revision

Viewing changes to pynslcd/shadow.py

  • Committer: Package Import Robot
  • Author(s): Arthur de Jong
  • Date: 2011-09-04 21:00:00 UTC
  • mfrom: (14.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20110904210000-pe3u91iga88vtr16
Tags: 0.8.4
* Upload to unstable
* switch to using the member attribute by default instead of
  uniqueMember (backwards incompatible change)
* only return "x" as a password hash when the object has the shadowAccount
  objectClass and nsswitch.conf is configured to do shadow lookups using
  LDAP (this avoids some problems with pam_unix)
* fix problem with partial attribute name matches in DN (thanks Timothy
  White)
* fix a problem with objectSid mappings with recent versions of OpenLDAP
  (patch by Wesley Mason)
* set the socket timeout in a connection callback to avoid timeout
  issues during the SSL handshake (patch by Stefan Völkel)
* check for unknown variables in pam_authz_search
* only check password expiration when authenticating, only check account
  expiration when doing authorisation
* make buffer sizes consistent and grow all buffers holding string
  representations of numbers to be able to hold 64-bit numbers
* update AX_PTHREAD from autoconf-archive
* support querying DNS SRV records from a different domain than the current
  one (based on a patch by James M. Leddy)
* fix a problem with uninitialised memory while parsing the tls_ciphers
  option (closes: #638872) (but doesn't work yet due to #640384)
* implement bounds checking of numeric values read from LDAP (patch by
  Jakub Hrozek)
* correctly support large uid and gid values from LDAP (patch by Jakub
  Hrozek)
* improvements to the configure script (patch by Jakub Hrozek)
* switch to dh for debian/rules and bump debhelper compatibility to 8
* build Debian packages with multiarch support
* ship shlibs (but still no symbol files) for libnss-ldapd since that was
  the easiest way to support multiarch
* fix output in init script when restarting nslcd (closes: #637132)
* correctly handle leading and trailing spaces in preseeded debconf uri
  option (patch by Andreas B. Mundt) (closes: #637863)
* support spaces around database names in /etc/nsswitch.conf while
  configuring package (closes: #640185)
* updated Russian debconf translation by Yuri Kozlov (closes: #637751)
* updated French debconf translation by Christian Perrier (closes: #637756)
* added Slovak debconf translation by Slavko (closes: #637759)
* updated Danish debconf translation by Joe Hansen (closes :#637763)
* updated Brazilian Portuguese debconf translation by Denis Doria
* updated Portuguese debconf translation by Américo Monteiro
* updated Japanese debconf translation by Kenshi Muto (closes: #638195)
* updated Czech debconf translation by Miroslav Kure (closes: #639026)
* updated German debconf translation by Chris Leick (closes: #639107)
* updated Spanish debconf translation by Francisco Javier Cuadrado
  (closes: #639236)
* updated Dutch debconf translation by Arthur de Jong with help from Paul
  Gevers and Jeroen Schot

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# shadow.py - lookup functions for shadownet addresses
 
3
#
 
4
# Copyright (C) 2010, 2011 Arthur de Jong
 
5
#
 
6
# This library is free software; you can redistribute it and/or
 
7
# modify it under the terms of the GNU Lesser General Public
 
8
# License as published by the Free Software Foundation; either
 
9
# version 2.1 of the License, or (at your option) any later version.
 
10
#
 
11
# This library is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
# Lesser General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU Lesser General Public
 
17
# License along with this library; if not, write to the Free Software
 
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
19
# 02110-1301 USA
 
20
 
 
21
import logging
 
22
 
 
23
import constants
 
24
import common
 
25
 
 
26
 
 
27
attmap = common.Attributes(uid='uid',
 
28
                           userPassword='"*"',
 
29
                           shadowLastChange='"${shadowLastChange:--1}"',
 
30
                           shadowMin='"${shadowMin:--1}"',
 
31
                           shadowMax='"${shadowMax:--1}"',
 
32
                           shadowWarning='"${shadowWarning:--1}"',
 
33
                           shadowInactive='"${shadowInactive:--1}"',
 
34
                           shadowExpire='"${shadowExpire:--1}"',
 
35
                           shadowFlag='"${shadowFlag:-0}"')
 
36
filter = '(objectClass=shadowAccount)'
 
37
bases = ( 'ou=people,dc=test,dc=tld', )
 
38
 
 
39
 
 
40
class ShadowRequest(common.Request):
 
41
 
 
42
    def write(self, dn, attributes, parameters):
 
43
        # get name and check against requested name
 
44
        names = attributes['uid']
 
45
        if not names:
 
46
            print 'Error: entry %s does not contain %s value' % ( dn, attmap['uid'] )
 
47
            return
 
48
        if 'uid' in parameters:
 
49
            if parameters['uid'] not in names:
 
50
                return
 
51
            names = ( parameters['uid'], )
 
52
        # get password
 
53
        (passwd, ) = attributes['userPassword']
 
54
        if not passwd or self.calleruid != 0:
 
55
            passwd = '*'
 
56
        # function for making an int
 
57
        def mk_int(attr):
 
58
            try:
 
59
                return
 
60
            except TypeError:
 
61
                return None
 
62
        # get lastchange date
 
63
        lastchangedate = int(attributes.get('shadowLastChange', [0])[0])
 
64
        # we expect an AD 64-bit datetime value;
 
65
        # we should do date=date/864000000000-134774
 
66
        # but that causes problems on 32-bit platforms,
 
67
        # first we devide by 1000000000 by stripping the
 
68
        # last 9 digits from the string and going from there */
 
69
        if attmap['shadowLastChange'] == 'pwdLastSet':
 
70
            lastchangedate = ( lastchangedate / 864000000000 ) - 134774
 
71
        # get longs
 
72
        mindays = int(attributes.get('shadowMin', [-1])[0])
 
73
        maxdays = int(attributes.get('shadowMax', [-1])[0])
 
74
        warndays = int(attributes.get('shadowWarning', [-1])[0])
 
75
        inactdays = int(attributes.get('shadowInactive', [-1])[0])
 
76
        expiredate = int(attributes.get('shadowExpire', [-1])[0])
 
77
        flag = int(attributes.get('shadowFlag', [0])[0])
 
78
        if attmap['shadowFlag'] == 'pwdLastSet':
 
79
            if flag & 0x10000:
 
80
                maxdays = -1
 
81
            flag = 0
 
82
        # write results
 
83
        for name in names:
 
84
            self.fp.write_int32(constants.NSLCD_RESULT_BEGIN)
 
85
            self.fp.write_string(name)
 
86
            self.fp.write_string(passwd)
 
87
            self.fp.write_int32(lastchangedate)
 
88
            self.fp.write_int32(mindays)
 
89
            self.fp.write_int32(maxdays)
 
90
            self.fp.write_int32(warndays)
 
91
            self.fp.write_int32(inactdays)
 
92
            self.fp.write_int32(expiredate)
 
93
            self.fp.write_int32(flag)
 
94
 
 
95
 
 
96
class ShadowByNameRequest(ShadowRequest):
 
97
 
 
98
    action = constants.NSLCD_ACTION_SHADOW_BYNAME
 
99
 
 
100
    def read_parameters(self, fp):
 
101
        return dict(uid=fp.read_string())
 
102
 
 
103
 
 
104
class ShadowAllRequest(ShadowRequest):
 
105
 
 
106
    action = constants.NSLCD_ACTION_SHADOW_ALL