1 # this module is an OS/2 oriented replacement for the pwd standard
4 # written by Andrew MacIntyre, April 2001.
5 # updated July 2003, adding field accessor support
7 # note that this implementation checks whether ":" or ";" as used as
8 # the field separator character. Path conversions are are applied when
9 # the database uses ":" as the field separator character.
11 """Replacement for pwd standard extension module, intended for use on
12 OS/2 and similar systems which don't normally have an /etc/passwd file.
14 The standard Unix password database is an ASCII text file with 7 fields
15 per record (line), separated by a colon:
17 - password (encrypted string, or "*" or "")
20 - description (usually user's name)
21 - home directory (path to user's home directory)
22 - shell (path to the user's login shell)
24 (see the section 8.1 of the Python Library Reference)
26 This implementation differs from the standard Unix implementation by
27 allowing use of the platform's native path separator character - ';' on OS/2,
28 DOS and MS-Windows - as the field separator in addition to the Unix
29 standard ":". Additionally, when ":" is the separator path conversions
30 are applied to deal with any munging of the drive letter reference.
32 The module looks for the password database at the following locations
33 (in order first to last):
34 - ${ETC_PASSWD} (or %ETC_PASSWD%)
35 - ${ETC}/passwd (or %ETC%/passwd)
36 - ${PYTHONHOME}/Etc/passwd (or %PYTHONHOME%/Etc/passwd)
46 getpwuid(uid) - return the record for user-id uid as a 7-tuple
48 getpwnam(name) - return the record for user 'name' as a 7-tuple
50 getpwall() - return a list of 7-tuples, each tuple being one record
51 (NOTE: the order is arbitrary)
56 passwd_file - the path of the password database file
62 # try and find the passwd file
64 if os
.environ
.has_key('ETC_PASSWD'):
65 __passwd_path
.append(os
.environ
['ETC_PASSWD'])
66 if os
.environ
.has_key('ETC'):
67 __passwd_path
.append('%s/passwd' % os
.environ
['ETC'])
68 if os
.environ
.has_key('PYTHONHOME'):
69 __passwd_path
.append('%s/Etc/passwd' % os
.environ
['PYTHONHOME'])
72 for __i
in __passwd_path
:
81 # path conversion handlers
82 def __nullpathconv(path
):
83 return path
.replace(os
.altsep
, os
.sep
)
85 def __unixpathconv(path
):
86 # two known drive letter variations: "x;" and "$x"
88 conv
= path
[1] + ':' + path
[2:]
90 conv
= path
[0] + ':' + path
[2:]
93 return conv
.replace(os
.altsep
, os
.sep
)
95 # decide what field separator we can try to use - Unix standard, with
96 # the platform's path separator as an option. No special field conversion
97 # handler is required when using the platform's path separator as field
98 # separator, but are required for the home directory and shell fields when
99 # using the standard Unix (":") field separator.
100 __field_sep
= {':': __unixpathconv
}
102 if os
.pathsep
!= ':':
103 __field_sep
[os
.pathsep
] = __nullpathconv
105 # helper routine to identify which separator character is in use
106 def __get_field_sep(record
):
108 for c
in __field_sep
.keys():
109 # there should be 6 delimiter characters (for 7 fields)
110 if record
.count(c
) == 6:
116 raise KeyError, '>> passwd database fields not delimited <<'
118 # class to match the new record field name accessors.
119 # the resulting object is intended to behave like a read-only tuple,
120 # with each member also accessible by a field name.
122 def __init__(self
, name
, passwd
, uid
, gid
, gecos
, dir, shell
):
123 self
.__dict
__['pw_name'] = name
124 self
.__dict
__['pw_passwd'] = passwd
125 self
.__dict
__['pw_uid'] = uid
126 self
.__dict
__['pw_gid'] = gid
127 self
.__dict
__['pw_gecos'] = gecos
128 self
.__dict
__['pw_dir'] = dir
129 self
.__dict
__['pw_shell'] = shell
130 self
.__dict
__['_record'] = (self
.pw_name
, self
.pw_passwd
,
131 self
.pw_uid
, self
.pw_gid
,
132 self
.pw_gecos
, self
.pw_dir
,
138 def __getitem__(self
, key
):
139 return self
._record
[key
]
141 def __setattr__(self
, name
, value
):
142 raise AttributeError('attribute read-only: %s' % name
)
145 return str(self
._record
)
147 def __cmp__(self
, other
):
148 this
= str(self
._record
)
157 # read the whole file, parsing each entry into tuple form
158 # with dictionaries to speed recall by UID or passwd name
159 def __read_passwd_file():
161 passwd
= open(passwd_file
, 'r')
163 raise KeyError, '>> no password database <<'
168 entry
= passwd
.readline().strip()
171 sep
= __get_field_sep(entry
)
172 fields
= entry
.split(sep
)
174 fields
[i
] = int(fields
[i
])
176 fields
[i
] = __field_sep
[sep
](fields
[i
])
177 record
= Passwd(*fields
)
178 if not uidx
.has_key(fields
[2]):
179 uidx
[fields
[2]] = record
180 if not namx
.has_key(fields
[0]):
181 namx
[fields
[0]] = record
183 pass # skip empty or malformed records
191 # return the passwd database entry by UID
193 u
, n
= __read_passwd_file()
196 # return the passwd database entry by passwd name
198 u
, n
= __read_passwd_file()
201 # return all the passwd database entries
203 u
, n
= __read_passwd_file()
207 if __name__
== '__main__':