summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Relevant BUGIDs:Thorsten Kukuk2004-09-14
| | | | | | | | | Purpose of commit: Commit summary: --------------- bugfix: Bug 1027903 and 1027912
* Relevant BUGIDs:Thorsten Kukuk2004-09-14
| | | | | | | | | Purpose of commit: Commit summary: --------------- docufix: pam_mkhomedir: Remove wrong debug options (Bug 591605)
* Relevant BUGIDs: 850092Thorsten Kukuk2003-11-27
| | | | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Using the fakeroot option as normal user does not work, since we call ldconfig, which aborts with an error message if not called as root due missing permissions. Fixed by calling ldconfig with -n library path option if FAKEROOT is set.
* Relevant BUGIDs: 840327Thorsten Kukuk2003-11-27
| | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Mike Civil found out, that the location of the default config file is empty. Fixed by using the correct define.
* Relevant BUGIDs: 808022Thorsten Kukuk2003-11-26
| | | | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- _pam_aconf.h will be no longer installed. It's a configuration header generated by autoconf, and could interfere with applications which might include it. None of the other installed headers include it, either, so it doesn't serve any purpose.
* Relevant BUGIDs: 849545Thorsten Kukuk2003-11-26
| | | | | | | | | | Purpose of commit: bugfix/cleanup Commit summary: --------------- CFLAGS from configure run is ignored by Make.Rules. modules should build after libpam, so that we can link against libpam. In one place, "ar" instead of "$(AR)" is used.
* Relevant BUGIDs: 849541Thorsten Kukuk2003-11-26
| | | | | | | | | | Purpose of commit: cleanup Commit summary: --------------- pam_rhosts_auth.c included sys/fsuid.h twice on Linux and uses "#ifdef linux" instead the correct "#ifdef __linux__".
* Relevant BUGIDs: 849498Thorsten Kukuk2003-11-26
| | | | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- The type of remember in support.c is int, not long. But we compare remember with LONG_MIN and LONG_MAX. While this works on 32bit architectures, this fails on 64bit one. INT_MIN and INT_MAX should be used.
* Relevant BUGIDs: 848337Thorsten Kukuk2003-11-25
| | | | | | | | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- pam_shells uses strlen/strcmp, but does not include the corresponding string.h header file. This could lead to problems on architectures, where gcc needs a correct prototype to generate correct calling code. pam_stress.c complains about a redefined __USE_BSD symbol. This is a internal glibc define and should not be used in source code.
* Relevant BUGIDs: 848325Thorsten Kukuk2003-11-25
| | | | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Don't use ll_time from utmp struct as argument for ctime/time, this does not work on new 64bit architectures. Instead use a temporary copy.
* Relevant BUGIDs:Thorsten Kukuk2003-11-24
| | | | | | | | | Purpose of commit: bugfix for pam_securetty Commit summary: --------------- Move the first usage of uttyname ofter the initialisation (Bug # 848316). This move was forgetten with the last changes.
* Relevant BUGIDs: 812567Jan Rekorajski2003-09-25
| | | | | | | | | | | Purpose of commit: new feature Commit summary: --------------- Implementation of "include" directive for pam config file syntax. - added module type PAM_T_ANY needed to know if we are loading included file or main one - let _pam_parse_conf_file() know of new directive - new function _pam_load_conf_file() used to load "included" configs
* Relevant BUGIDs: 812567Jan Rekorajski2003-09-25
| | | | | | | | Purpose of commit: new feature Commit summary: --------------- Added new "include" directive to pam config file syntax.
* Relevant BUGIDs: 812567Jan Rekorajski2003-09-25
| | | | | | | | Purpose of commit: new feature Commit summary: --------------- Document new "include" directive for pam config file syntax.
* Relevant BUGIDs: 770645Steve Langasek2003-07-13
| | | | | | | | | | | | | Purpose of commit: cleanup Commit summary: --------------- Fix the many compile-time warnings caused by features.h being included before our _pam_aconf.h. This should make it much easier to find other bugs. Also, call config.status instead of configure, to allow rebuilding generated files with the same options.
* Relevant BUGIDs: 643357Steve Langasek2003-07-13
| | | | | | | | Purpose of commit: cleanup Commit summary: --------------- bring configure up-to-date wrt configure.in.
* Relevant BUGIDs: 634543Steve Langasek2003-07-13
| | | | | | | | Purpose of commit: cleanup Commit summary: --------------- Fix a log message when directory creation has failed
* Relevant BUGIDs: 728887Steve Langasek2003-07-13
| | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Protect against segfaults in pam_start() when called with an invalid pamh argument.
* Relevant BUGIDs: 643360Steve Langasek2003-07-13
| | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Use the value of $(PIC) whenever we're compiling dynamic libs/modules; this is required on most architectures.
* Relevant BUGIDs: 643357Steve Langasek2003-07-13
| | | | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Patch from Sam Hartman to fix handling of module linking on Linux: modules should be linked against libpam if they call any functions from the library, since not all platforms will correctly resolve symbol references otherwise. Also, make sure we use gcc, not ld, when linking, since there's additional linker glue that gcc will pull in for us.
* Relevant BUGIDs: patch 476984Steve Langasek2003-07-13
| | | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Patch from Nalin Dahyabhai: always compare tty names without the "/dev", working around inconsistent handling among apps. Also, make minor adjustments for robustness (handle DOS EOL chars, and don't hardcode array sizes).
* Relevant BUGIDs: patch 476976Steve Langasek2003-07-13
| | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Patch from Nalin Dahyabhai: when updating /etc/{passwd,shadow}, always respect any admin-specified permissions on the existing files.
* Relevant BUGIDs: patch 476968Steve Langasek2003-07-13
| | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Patch from Nalin Dahyabhai to prevent a buffer overflow in pam_issue (rare, but could be triggered by a race condition when the admin updates /etc/issue).
* Relevant BUGIDs: patch 476967Steve Langasek2003-07-13
| | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Patch from Nalin Dahyabhai: an empty tty value is not fatal when the user isn't root.
* Relevant BUGIDs: patch 476936Steve Langasek2003-07-13
| | | | | | | | | | | | Purpose of commit: cleanup Commit summary: --------------- Variant on Nalin's patch: 'unsigned int' is /usually/ 32 bits, but uint32_t is /always/ 32 bits -- where present. Since C99 is fairly recent, we may need some autoconf support for older platforms, but should at least be covered for Linux & Solaris. (Still a better choice than the non-standard sys/types.h, though.)
* Relevant BUGIDs: 667584 664290Andrew G. Morgan2003-01-14
| | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Two bug fixes in one: don't trust getlogin() and sanely lower the time the password databases are locked in pam_unix.
* Relevant BUGIDs: 612956Andrew G. Morgan2002-09-24
| | | | | | | | | Purpose of commit: cleanup Commit summary: --------------- set up for 0.78 development add pgp key transition info (in the pgp.keys.asc file).
* Relevant BUGIDs: 612956Andrew G. Morgan2002-09-23
| | | | | | | | Purpose of commit: new release Commit summary: --------------- Time to make a new PAM release.
* Relevant BUGIDs: 521314Andrew G. Morgan2002-09-23
| | | | | | | | Purpose of commit: bugfix Commit summary: --------------- This code is needed to complete this bugfix.
* Relevant BUGIDs: 471377Andrew G. Morgan2002-09-17
| | | | | | | | Purpose of commit: bugfix Commit summary: --------------- PDF support was broken - installation was messed up.
* Relevant BUGIDs: 476951, 476953Andrew G. Morgan2002-07-13
| | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- Be more careful when using the deny option - pay attention to the trust option before you grant access. Fix from Nalin.
* Relevant BUGIDs: 436435Andrew G. Morgan2002-07-13
| | | | | | | | | Purpose of commit: new feature Commit summary: --------------- add account management to a bunch of modules. Submitted by Harald Welte.
* Relevant BUGIDs: 476941, 476980Andrew G. Morgan2002-07-11
| | | | | | | | | | Purpose of commit: bugfix and new feature Commit summary: --------------- fix case that wheel is the primary group of the user add support for passwordless transitions from a trusted user to another non-root user.
* Relevant BUGIDs: 476963Andrew G. Morgan2002-07-11
| | | | | | | | | | | | Purpose of commit: new feature Commit summary: --------------- some applications are not prepared to get a SIGCHLD from a child process they didn't think they launched, so we now suppress this signal for the duration of use of the helper binary. The 'noreap' module argument is provided to override this new default.
* Relevant BUGIDs: noneAndrew G. Morgan2002-07-09
| | | | | | | | | Purpose of commit: prep for next release Commit summary: --------------- add an entry for 0.77 changes and bump the revision ids in the configure.in file.
* Relevant BUGIDs: 521314Andrew G. Morgan2002-07-09
| | | | | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- bigcrypt does not match crypt when password length is too long. This led to a pam_unix problem when the module had not set the password in bigcrypt mode, but was trying to compare with bigcrypt output. The fix is to use the stored password as a guide to how much of the encrypted password to compare against.
* Relevant BUGIDs: 415423Andrew G. Morgan2002-06-27
| | | | | | | | | | Purpose of commit: cleanup Commit summary: --------------- Shouldn't explicitly include prototype in the file - it conflicts with common defaults and thus should not be there. (Request for removal from David Lee.)
* Relevant BUGIDs: 419307Andrew G. Morgan2002-06-27
| | | | | | | | | Purpose of commit: new feature/cleanup Commit summary: --------------- made pam_nologin more secure by changing the default behavior and adding some more features. General code clean up in the process.
* Relevant BUGIDs: 565470Andrew G. Morgan2002-06-27
| | | | | | | | | Purpose of commit: bugfix Commit summary: --------------- It seems that configure was barfing on some packages because libpam_misc could not compile without also being linked to libpam.
* Relevant BUGIDs: 491466Andrew G. Morgan2002-05-29
| | | | | | | | | | | | Purpose of commit: cleanup Commit summary: --------------- These were all suggestions from the OS X patch provided by Luke Howard. There is another proposed patch for OS X support which promises to be a little cleaner with the heavy stuff, so I am committing these simple changes now, with the intention of moving to the other patch for the big stuff (see 534205).
* Relevant BUGIDs: 476971Andrew G. Morgan2002-05-29
| | | | | | | | Purpose of commit: documentation Commit summary: --------------- typo/correctness fixes from Nalin.
* Relevant BUGIDs: 490938, 409852Andrew G. Morgan2002-05-29
| | | | | | | | | | Purpose of commit: debugging Commit summary: --------------- Added a simple wrapper to make it easier to test xsh with the sandbox libraries (no help with modules - besides editing your personal pam.d/xsh file).
* Relevant BUGIDs: 424315Andrew G. Morgan2002-05-29
| | | | | | | | | Purpose of commit: cleanup Commit summary: --------------- This was a reimplementation of pam_warn to be more useful. I did it in conjuction with testing the new setcred behavior.
* Relevant BUGIDs: 490938, 409852Andrew G. Morgan2002-05-29
| | | | | | | | Purpose of commit: cleanup Commit summary: --------------- add a cvsignore file
* Relevant BUGIDs: 471377Andrew G. Morgan2002-05-29
| | | | | | | | Purpose of commit: new feature Commit summary: --------------- build pdf files when you type 'make pdf' in the doc/ directory.
* Relevant BUGIDs: 529078Andrew G. Morgan2002-05-27
| | | | | | | | | Purpose of commit: documentation Commit summary: --------------- removed an inappropriate Red Hat ref. added a description of required etc. in terms of the [..] syntax.
* Relevant BUGIDs: 517064Andrew G. Morgan2002-05-26
| | | | | | | | | | | | | | | | | | | | Purpose of commit: feature Commit summary: --------------- document old feature and add '\]' parsing to make it a better feature. The feature is that we can accept spaces in module arguments by enclosing the whole argument inside square brackets. For example a module argument like this: "[hello [you\], this is me]" will be parsed as "hello [you], this is me" Not very interesting, but you get the idea. Thanks to Russell Kliese for requesting this.
* Relevant BUGIDs: 557322Andrew G. Morgan2002-05-26
| | | | | | | | Purpose of commit: cleanup Commit summary: --------------- clean up a compilation warning about strcmp() not being defined.
* Relevant BUGIDs: 527965Andrew G. Morgan2002-05-10
| | | | | | | | | Purpose of commit: documentation Commit summary: --------------- module developers guide changes wrt the conversation function from Jenn Vesperman.
* Relevant BUGIDs: 527821Andrew G. Morgan2002-05-10
| | | | | | | | | Purpose of commit: documentation Commit summary: --------------- some suggestions from Jenn Vesperman. some cleanup - updates noted in passing.