1 # this module is an OS/2 oriented replacement for the pwd standard
4 # written by Andrew MacIntyre, April 2001.
5 # released into the public domain "as is", with NO WARRANTY
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 # read the whole file, parsing each entry into tuple form
119 # with dictionaries to speed recall by UID or passwd name
120 def __read_passwd_file():
122 passwd
= open(passwd_file
, 'r')
124 raise KeyError, '>> no password database <<'
129 entry
= passwd
.readline().strip()
132 sep
= __get_field_sep(entry
)
133 fields
= entry
.split(sep
)
135 fields
[i
] = int(fields
[i
])
137 fields
[i
] = __field_sep
[sep
](fields
[i
])
138 record
= tuple(fields
)
139 if not uidx
.has_key(fields
[2]):
140 uidx
[fields
[2]] = record
141 if not namx
.has_key(fields
[0]):
142 namx
[fields
[0]] = record
144 pass # skip empty or malformed records
152 # return the passwd database entry by UID
154 u
, n
= __read_passwd_file()
157 # return the passwd database entry by passwd name
159 u
, n
= __read_passwd_file()
162 # return all the passwd database entries
164 u
, n
= __read_passwd_file()
168 if __name__
== '__main__':