forked from linux-pam/linux-pam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-CVS
5099 lines (3800 loc) · 175 KB
/
ChangeLog-CVS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-10-26 Dmitry V. Levin <[email protected]>
NB: ChangeLog file is no longer manually maintained.
See README-hacking for details.
2011-10-25 Thorsten Kukuk <[email protected]>
* release version 1.1.5
* configure.in: Bump version number.
* modules/pam_tally2/pam_tally2.8.xml: Remove never used option
"no_lock_time".
2011-10-14 Kees Cook <[email protected]>
* modules/pam_env/pam_env.c (_expand_arg): Abort when encountering an
overflowed environment variable expansion.
Fixes CVE-2011-3149.
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/pam/+bug/874565
* modules/pam_env/pam_env.c (_assemble_line): Correctly count leading
whitespace.
Fixes CVE-2011-3148.
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/pam/+bug/874469
2011-10-10 Tomas Mraz <[email protected]>
* modules/pam_access/pam_access.c: Add hostname resolution
cache.
(user_match): Clear the cache in fake_item.
(from_match): If from is not hostname, do not try to resolve it.
Cache the getaddrinfo() result.
(network_netmask_match): Cache the getaddrinfo() result.
(pam_sm_authenticate): Free the getaddrinfo() result.
* modules/pam_access/pam_access.c (netgroup_match): If getdomainname()
fails or domainname not set use NULL as domain in innetgr().
2011-09-30 Tomas Mraz <[email protected]>
* doc/man/pam.conf-syntax.xml: Improve documentation of the
sufficient and requisite control values. (Red Hat Bug #742413)
2011-08-25 Tomas Mraz <[email protected]>
* modules/pam_access/pam_access.c (user_match): Fix the split
on @ in the user field. (Red Hat Bug #732081)
* modules/pam_loginuid/pam_loginuid.c: Correct the FSF address.
2011-08-23 Tomas Mraz <[email protected]>
* modules/pam_env/pam_env.c (_pam_parse): Fix missing dereference.
2011-06-22 Thorsten Kukuk <[email protected]>
* release version 1.1.4
* configure.in: Bump version number.
* NEWS: Document changes since 1.1.3
* libpam/Makefile.am: Bump release number of shared library
* po/de.po: Translate new string.
* modules/pam_unix/Makefile.am (pam_unix_la_LIBADD): Reorder
Libraries.
2011-06-21 Thorsten Kukuk <[email protected]>
* modules/pam_limits/pam_limits.c: Add set_all option,
read limits from PID one if no limit is specified and set_all
is set.
* modules/pam_limits/pam_limits.8.xml: Document set_all option.
Based on Patch by Kees Cook.
2011-06-15 Tomas Mraz <[email protected]>
* modules/pam_sepermit/pam_sepermit.c (check_running): Avoid
leaking memory and dir handle on realloc failure.
(sepermit_unlock): Cast fcntl() and close() calls to void.
* modules/pam_pwhistory/opasswd.c (check_old_password): Do not
needlessly call strdupa().
(save_old_password): Avoid memleaks in error paths. Avoid memleak of
buf. Make the opasswd entry parsing more robust.
* modules/pam_pwhistory/pam_pwhistory.8.xml: Document the
special meaning of remember=0.
* modules/pam_unix/support.c (_set_ctrl): Do not crash when remember,
minlen, or rounds options are used with wrong module type.
* modules/pam_timestamp/pam_timestamp.c (pam_sm_authenticate): Avoid
memleak in error path.
(pam_sm_open_session): Avoid memleak and fd leak in error path.
* modules/pam_access/pam_access.c (user_match): Initialize the
fake_item from item.
2011-06-14 Thorsten Kukuk <[email protected]>
* configure.in: Check for libtirpc by default.
* libpam/Makefile.am: Add support for libtirpc.
* modules/pam_access/Makefile.am: Likewise.
* modules/pam_unix/Makefile.am: Likewise.
* modules/pam_unix/pam_unix_passwd.c: Change ifdefs for
new libtirpc support.
* modules/pam_unix/yppasswd_xdr.c: Only compile if we have rpc/rpc.h.
2011-06-13 Tomas Mraz <[email protected]>
* modules/pam_securetty/pam_securetty.c (securetty_perform_check): Test
also whether the tty is in the /sys/class/tty/console/active file.
* modules/pam_securetty/pam_securetty.8.xml: Document the new check of
/sys/class/tty/console/active/file.
2011-06-07 Tomas Mraz <[email protected]>
* modules/pam_namespace/pam_namespace.c (root_shared): New
function to detect shared / mount.
(pam_sm_open_session): Call the root_shared() and enable
private mounts based on that.
* modules/pam_namespace/pam_namespace.8.xml: Document the
automatic detection of shared / mount.
2011-06-06 Tomas Mraz <[email protected]>
* modules/pam_group/pam_group.c (shift_bytes): Removed.
(shift_buf, trim_spaces): Added new functions.
(read_field): Thorough rewrite of the parsing.
(check_account): read_field() now uses state information. No
extra read_field() call at the end of configuration line.
* modules/pam_time/pam_time.c (shift_bytes): Removed.
(shift_buf, trim_spaces): Added new functions.
(read_field): Thorough rewrite of the parsing.
(check_account): read_field() now uses state information. No
extra read_field() call at the end of configuration line.
* modules/pam_namespace/pam_namespace.h: Define the MS_PRIVATE and
MS_REC flags if they are not in sys/mount.h.
2011-06-06 Nguyễn Thái Ngọc Duy <[email protected]>
* po/LINGUAS: Add vietnamese.
* po/vi.po: Add vietnamese translation.
2011-06-02 Tomas Mraz <[email protected]>
* modules/pam_namespace/pam_namespace.c (protect_dir): Add parameter
to always do protect mount the last directory in the path.
(check_inst_parent, create_polydir): Update the protect_dir() call.
(ns_setup): Likewise and add the MS_PRIVATE mount() call.
(pam_sm_open_session): Check the mount_private option.
* modules/pam_namespace/pam_namespace.h: Add the PAMNS_MOUNT_PRIVATE.
* modules/pam_namespace/pam_namespace.8.xml: Document the mount_private
option.
* modules/pam_cracklib/pam_cracklib.c (str_lower): Make it no-op
on NULL strings.
(password_check): Guard for NULLs returned from memory allocation.
* modules/pam_filter/pam_filter.c (process_args): Guard for error return
from pam_get_user().
* modules/pam_echo/pam_echo.c (replace_and_print): Guard for error return
from pam_get_item().
2011-05-30 Thorsten Kukuk <[email protected]>
* modules/pam_timestamp/pam_timestamp.c (main): Remove unsused
variable pretval.
* modules/pam_stress/pam_stress.c (converse): **message is const.
(stress_get_password): pmsg is const.
(pam_sm_chauthtok): Likewise.
* libpam/pam_item.c (pam_get_user): Make pmsg const and remove
casts.
2011-05-30 Thorsten Kukuk <[email protected]>
* modules/pam_env/pam_env.c (_pam_parse): Implement debug option.
Based on patch by Tomas Mraz.
2011-05-24 Thorsten Kukuk <[email protected]>
* modules/pam_listfile/pam_listfile.c (pam_sm_authenticate): quiet
option has no argument, print no missing file if quiet is set
[sf#3194930].
2011-05-04 Thorsten Kukuk <[email protected]>
* modules/pam_lastlog/pam_lastlog.c (last_login_failed): Don't
abort with error if btmp file does not exist.
2011-03-21 Tomas Mraz <[email protected]>
* modules/pam_unix/md5.c (MD5Final): Clear the whole ctx.
2011-03-18 Tomas Mraz <[email protected]>
* modules/pam_namespace/md5.c (MD5Final): Clear the whole ctx.
* modules/pam_namespace/pam_namespace.c (del_polydir): Guard for NULL poly.
(protect_dir): Guard for -1 passing to close().
(ns_setup): Likewise.
(pam_sm_open_session): Correctly test for SELinux enabled flag.
2011-03-17 Tomas Mraz <[email protected]>
* modules/pam_selinux/pam_selinux.c (config_context): Fix leak of type.
(manual_context): Likewise.
(context_from_env): Remove extraneous auditing in success case.
* modules/pam_unix/support.c (_unix_run_helper_binary): Remove extra
close() call.
2011-02-22 Tomas Mraz <[email protected]>
* modules/pam_nologin/pam_nologin.8.xml: Add missing space.
* modules/pam_limits/limits.conf.5.xml: Fix typo.
2010-12-21 Tomas Mraz <[email protected]>
* modules/pam_selinux/pam_selinux.c (mls_range_allowed): Unhardcode
values for security class and av permission bit.
2010-12-14 Tomas Mraz <[email protected]>
* modules/pam_limits/pam_limits.c (parse_uid_range): New function
to parse the range of uids or gids.
(parse_config_file): Call parse_uid_range() and if uid/gid range
is identified, setup the limits if the range matches. New parameters
containing user's uid and primary gid.
(pam_sm_open_session): Pass the user's uid and primary gid to
parse_config_file().
* modules/pam_limits/limits.conf.5.xml: Document the uid/gid ranges.
2010-12-14 Bahadır Kandemir <[email protected]>
* po/tr.po: Updated translations.
2010-11-25 Tomas Mraz <[email protected]>
* modules/pam_securetty/pam_securetty.8.xml: Improve documentation
of the kernel console feature and the noconsole option.
2010-11-24 Thorsten Kukuk <[email protected]>
* modules/pam_securetty/pam_securetty.c: Parse console= kernel
option, add noconsole option.
* modules/pam_securetty/pam_securetty.8.xml: Document new behavior
for serial console.
Patch from Lennart Poettering.
2010-11-24 Tomas Mraz <[email protected]>
* modules/pam_limits/limits.conf.5.xml: Document the %group syntax.
2010-11-18 Tomas Mraz <[email protected]>
* modules/pam_limits/pam_limits.c (pam_parse,pam_sm_open_session):
Drop obsolete and broken option change_uid.
* modules/pam_limits/pam_limits.8.xml: Likewise.
2010-11-16 Tomas Mraz <[email protected]>
* modules/pam_pwhistory/pam_pwhistory.c (pam_sm_chauthtok): Remove
dead and duplicate code. Return PAM_INCOMPLETE instead of
PAM_CONV_AGAIN.
2010-11-11 Tomas Mraz <[email protected]>
* modules/pam_selinux/pam_selinux.c (pam_sm_open_session): Fix
potential use after free in case SELinux is misconfigured.
* modules/pam_namespace/pam_namespace.c (process_line): Fix memory
leak when parsing empty config file lines.
2010-10-28 Thorsten Kukuk <[email protected]>
* release version 1.1.3
* configure.in: Increase version to 1.1.3
* NEWS: document visible changes
* libpam/Makefile.am (libpam_la_LDFLAGS): Bump version number.
2010-10-27 Thorsten Kukuk <[email protected]>
* doc/adg/Makefile.am: Use UTF-8 for html docu.
* doc/mwg/Makefile.am: Likewise.
* doc/sag/Makefile.am: Likewise.
2010-10-22 Tomas Mraz <[email protected]>
* modules/pam_namespace/pam_namespace.c (inst_init): Use execle()
to execute the init script with clean environment. (CVE-2010-3853)
(cleanup_tmpdirs): Likewise for executing rm.
2010-10-21 Dmitry V. Levin <[email protected]>
* modules/pam_mkhomedir/mkhomedir_helper.c (rec_mkdir): Remove.
(create_homedir): Use mkdir() instead of rec_mkdir().
(make_parent_dirs): New function.
(main): Use make_parent_dirs() to create parent directories only
for the home directory itself.
2010-10-21 Thorsten Kukuk <[email protected]>
* modules/pam_unix/support.c (_unix_getpwnam): Don't allocate
unneeded buffer for uid/gid [sf#3059572].
2010-10-20 Thorsten Kukuk <[email protected]>
* doc/man/pam_get_authtok.3.xml: Fix xml code.
* doc/man/Makefile.am: Fix build dependencys of pam_get_authtok.3.
* xtests/Makefile.am: Only build xtests if we run xtests.
* configure.in: Check for libdb with symbol versions, too.
Patch from Diego Elio Pettenò.
* modules/pam_mkhomedir/mkhomedir_helper.c (rec_mkdir): Create
parent directories always with mode 0755.
(create_homedir): Create main directory with mode 0700 at first.
2010-10-19 Dmitry V. Levin <[email protected]>
* modules/pam_selinux/Makefile.am (pam_selinux_la_LIBADD): Add
@LIBAUDIT@.
* m4/ld-O1.m4 (PAM_LD_O1): Fix typo.
* m4/ld-no-undefined.m4: New file.
* configure.in: Use PAM_LD_NO_UNDEFINED.
* Makefile.am (M4_FILES): Add m4/ld-no-undefined.m4.
* modules/pam_selinux/pam_selinux.c (verbose_message): Remove.
(pam_sm_open_session): Call send_text() instead of verbose_message().
2010-10-19 Thorsten Kukuk <[email protected]>
* modules/pam_env/pam_env.8.xml: Document side effects of
environment variables in the stack.
* modules/pam_exec/pam_exec.8.xml: Document that user can
have controll over the environment.
2010-10-07 Dmitry V. Levin <[email protected]>
* modules/pam_selinux/pam_selinux.c (verbose_message): Fix format
string.
2010-10-04 Dmitry V. Levin <[email protected]>
* libpam/pam_modutil_priv.c: New file.
* libpam/Makefile.am (libpam_la_SOURCES): Add it.
* libpam/include/security/pam_modutil.h (struct pam_modutil_privs,
PAM_MODUTIL_DEF_PRIVS, pam_modutil_drop_priv,
pam_modutil_regain_priv): New declarations.
* libpam/libpam.map (LIBPAM_MODUTIL_1.1.3): New interface.
* modules/pam_env/pam_env.c (handle_env): Use new pam_modutil interface.
* modules/pam_mail/pam_mail.c (_do_mail): Likewise.
* modules/pam_xauth/pam_xauth.c (check_acl, pam_sm_open_session,
pam_sm_close_session): Likewise.
(pam_sm_open_session): Remove redundant fchown call.
Fixes CVE-2010-3430, CVE-2010-3431.
2010-10-01 Thorsten Kukuk <[email protected]>
* configure.in: Extend cross compiling check.
* doc/specs/Makefile.am: Set CFLAGS and LDFLAGS to BUILD_CFLAGS
and BUILD_LDFLAGS.
Bug #3078936 / gentoo #339174
2010-09-30 Thorsten Kukuk <[email protected]>
* modules/pam_xauth/pam_xauth.c (pam_sm_close_session): Warn if
unlink() fails.
2010-09-27 Dmitry V. Levin <[email protected]>
* modules/pam_xauth/pam_xauth.c (pam_sm_close_session): Return
PAM_SUCCESS immediately if no cookie file is defined. Return
PAM_SESSION_ERR if cookie file is defined but target uid cannot be
determined. Do not modify cookiefile string returned by pam_get_data.
* modules/pam_xauth/pam_xauth.c (check_acl): Ensure that the given
access control file is a regular file.
2010-09-16 Dmitry V. Levin <[email protected]>
* modules/pam_env/pam_env.c (handle_env): Use setfsuid() return code.
* modules/pam_mail/pam_mail.c (_do_mail): Likewise.
* modules/pam_xauth/pam_xauth.c (check_acl, pam_sm_open_session,
pam_sm_close_session): Likewise.
2010-08-31 Thorsten Kukuk <[email protected]>
* release version 1.1.2
* configure.in: Bump version number.
* NEWS: Document changes since 1.1.1.
* doc/adg/Linux-PAM_ADG.xml: Bump version number.
* doc/mwg/Linux-PAM_MWG.xml: Likewise.
* doc/sag/Linux-PAM_SAG.xml: Likewise.
* libpam/Makefile.am: Bump revision of shared library.
* po/*.po: Regenerate.
2010-08-26 Tomas Mraz <[email protected]>
* modules/pam_nologin/pam_nologin.c (perform_check): Try first
/var/run/nologin if the nologin file is not explicitly specified.
* modules/pam_nologin/pam_nologin.8.xml: Document that /var/run/nologin
is tried first.
2010-08-26 Sweta Kothari <[email protected]>
* po/gu.po: Updated translations.
2010-08-26 Geert Warrink <[email protected]>
* po/nl.po: Updated translations.
2010-08-26 Thorsten Kukuk <[email protected]>
* doc/specs/Makefile.am: Use CC_FOR_BUILD as compiler (cross
compile support).
* configure.in: Check for host compiler if cross compiling.
Bug #2315432, debian#284854#42.
2010-08-17 Thorsten Kukuk <[email protected]>
* modules/pam_unix/pam_unix_passwd.c: Implement minlen option.
* modules/pam_unix/support.c: Likewise.
* modules/pam_unix/support.h: Likewise.
* modules/pam_unix/pam_unix_acct.c (pam_sm_acct_mgmt): Adjust
arguments for _set_ctrl call.
* modules/pam_unix/pam_unix_auth.c (pam_sm_authenticate): Likewise.
* modules/pam_unix/pam_unix_session.c: Likewise.
* modules/pam_unix/pam_unix.8.xml: Document minlen option.
Based on patch by Steve Langasek.
2010-08-12 Thorsten Kukuk <[email protected]>
* modules/pam_mail/pam_mail.c: Check for mail only with user
privilegs.
* modules/pam_xauth/pam_xauth.c (run_coprocess): Check return
value of setgid, setgroups and setuid.
* modules/pam_xauth/pam_xauth.c (check_acl): Save errno for
later usage.
* modules/pam_env/pam_env.c (handle_env): Check if user exists,
read local user config only with user privilegs.`
2010-08-09 Thorsten Kukuk <[email protected]>
* modules/pam_tally/pam_tally.8.xml: Document that pam_tally is
deprecated.
* modules/pam_tty_audit/Makefile.am (EXTRA_DIST): Fix make dist.
* modules/pam_unix/passverify.c (check_shadow_expiry): Correct
check for expired date.
* modules/pam_unix/pam_unix_passwd.c (_pam_unix_approve_pass): Remove
check for password length. Bug #2923437.
2010-08-04 Thorsten Kukuk <[email protected]>
* modules/pam_tally2/pam_tally2.c (get_tally): Create file
with correct permissions. Patch by Diego Elio “Flameeyes” Pettenò.
* modules/pam_unix/passverify.c (PAMH_ARG_DECL): Don't request
password change if time is not yet set (1.1.1970). Bug #2730965.
* modules/pam_access/pam_access.c (user_match): Make sure
that user@host will not match @@netgroup. Bug #3035919.
* modules/pam_group/pam_group.c (check_account): Add '%' for
UNIX groups.
* modules/pam_group/group.conf: Add example for '%'.
* modules/pam_group/group.conf.5.xml: Document '%' syntax.
Bug #3002340, #3037155.
2010-08-02 Steve Langasek <[email protected]>
* modules/pam_mkhomedir/Makefile.am: don't pass --version-script
options when linking executables, only when linking libraries
Patch from Julien Cristau <[email protected]>
2010-07-12 Thorsten Kukuk <[email protected]>
* modules/pam_succeed_if/pam_succeed_if.c (pam_sm_authenticate): Add
audit flag to enable logging about unknown user (#2917257).
* modules/pam_succeed_if/pam_succeed_if.8.xml: Document audit.
* modules/pam_succeed_if/pam_succeed_if.8: Regenerated from xml.
* modules/pam_succeed_if/README: Regenerated from xml.
2010-06-22 Thorsten Kukuk <[email protected]>
* modules/pam_umask/pam_umask.8.xml: Remove comparisation of
gid and uid for usergroups.
* modules/pam_umask/pam_umask.c (setup_limits_from_gecos): Likewise.
Bug #3004656
* configure.in: Don't check for libxcrypt if no xcrypt.h exists,
fix typo introduced with 1.1.1.
Reported by Diego Elio “Flameeyes” Pettenò.
2010-06-15 Thorsten Kukuk <[email protected]>
* modules/pam_xauth/pam_xauth.c (pam_sm_close_session): Call
setfsuid to be allowed to remove temporary files (#3010705).
(pam_sm_open_session): Call fchown with correct permissions.
2010-06-09 Thorsten Kukuk <[email protected]>
* modules/pam_tty_audit/Makefile.am (TESTS): Add tst-pam_tty_audit.
* modules/pam_tty_audit/tst-pam_tty_audit: New.
2010-06-07 Steve Langasek <[email protected]>
* modules/pam_tty_audit/Makefile.am: If we don't have the libraries
required for building pam_tty_audit, we shouldn't install the manpage
either.
2010-05-27 Thorsten Kukuk <[email protected]>
* modules/pam_userdb/pam_userdb.c: Define HAVE_DBM
for BerkDB 5.0 support. Patch by Diego Elio Pettenò.
2010-04-15 Thorsten Kukuk <[email protected]>
* modules/pam_exec/pam_exec.8.xml: Fix example.
2010-04-13 Thorsten Kukuk <[email protected]>
* modules/pam_pwhistory/opasswd.c: Fix compilation if
cyprt_r() is not available.
* configure.in: check for getutent_r.
* modules/pam_timestamp/pam_timestamp.c: Use getutent()
if getutent_r() does not exist.
Patch from Diego Elio “Flameeyes” Pettenò.
2010-04-12 Thorsten Kukuk <[email protected]>
* doc/man/pam.conf-syntax.xml: Better documentation of
"actionN". Patch from Michal Soltys <[email protected]>.
2010-04-06 Thorsten Kukuk <[email protected]>
* modules/pam_rootok/pam_rootok.c: Add support for acct_mgmt
and chauthtok.
* modules/pam_rootok/pam_rootok.8.xml: Document new module
types.
2010-03-29 Thorsten Kukuk <[email protected]>
* po/ar.po: Add missing Plural-Forms entry to header.
2010-03-25 Daniel Nylander <[email protected]>
* po/sv.po: Updated translations.
2010-03-24 Ani Peter <[email protected]>
* po/ml.po: Updated translations.
2010-03-08 Yuri Chornoivan <[email protected]>
* po/uk.po: Updated translations.
2010-02-09 Tomas Mraz <[email protected]>
* libpam/pam_get_authtok.c (pam_get_authtok_internal): Fix
regression in the new password prompt.
2010-01-04 Elad <[email protected]>
* po/he.po: New translation to Hebrew.
* po/LINGUAS: Add Hebrew to the list.
2009-12-16 Thorsten Kukuk <[email protected]>
* release version 1.1.1
* NEWS: Adjust for 1.1.1
* configure.in: Likewise.
* doc/adg/Linux-PAM_ADG.xml: Likewise.
* doc/mwg/Linux-PAM_MWG.xml: Likewise.
* doc/sag/Linux-PAM_SAG.xml: Likewise.
* po/*.po: Regenerated.
2009-12-08 Thorsten Kukuk <[email protected]>
* configure.in: Rename DEBUG to PAM_DEBUG.
* libpam/pam_env.c: Likewise
* libpam/pam_handlers.c: Likewise
* libpam/pam_miscc.c: Likewise
* libpam/pam_password.c: Likewise
* libpam/include/security/_pam_macros.h: Likewise
* libpamc/test/modules/pam_secret.c: Likewise
* modules/pam_group/pam_group.c: Likewise
* modules/pam_listfile/pam_listfile.c: Likewise
* modules/pam_unix/pam_unix_auth.c: Likewise
* modules/pam_unix/pam_unix_passwd.c: Likewise
2009-12-08 Tomas Mraz <[email protected]>
* modules/pam_unix/passverify.c(unix_update_shadow): Create a shadow
entry if not present in the file.
* modules/pam_listfile/pam_listfile.c(pam_sm_authenticate): Remove
unused function and variable.
2009-11-19 Tomas Mraz <[email protected]>
* modules/pam_sepermit/pam_sepermit.c(sepermit_match): Return
PAM_AUTH_ERR from the module if sepermit_lock() fails.
2009-11-18 Tomas Mraz <[email protected]>
* modules/pam_access/pam_access.c(user_match): Revert the netgroup
match to the original behavior, add new syntax for adding the local
hostname.
* modules/pam_access/access.conf.5.xml: Document the new syntax
for adding the local hostname to the netgroup match.
2009-11-10 Thorsten Kukuk <[email protected]>
* doc/man/pam_get_authtok.3.xml: Document pam_get_authtok_noverify
and pam_get_authtok_verify.
* libpam/Makefile.am (libpam_la_LDFLAGS): Bump revesion of libpam.
* libpam/pam_get_authtok.c (pam_get_authtok_internal): Renamed
from pam_get_authtok, add flags argument, always check return
values.
* modules/pam_cracklib/pam_cracklib.c (pam_sm_chauthtok): Use
pam_get_authtok_noverify and pam_get_authtok_verify.
* libpam/include/security/pam_ext.h: Add prototypes for
pam_get_authtok_noverify and pam_get_authtok_verify.
* libpam/libpam.map: Add new pam_get_authtok_* functions.
2009-11-02 Ani Peter <[email protected]>
* po/ml.po: Updated translations.
2009-11-02 Tomas Mraz <[email protected]>
* modules/pam_sepermit/Makefile.am: Add sepermit.conf(5) manual page.
* modules/pam_sepermit/pam_sepermit.8.xml: Add reference to
sepermit.conf(5). Drop some redundant text.
* modules/pam_sepermit/sepermit.conf.5.xml: New file.
* modules/pam_sepermit/pam_sepermit.c(sepermit_match): Implement the ignore
option in sepermit.conf.
2009-10-29 Tomas Mraz <[email protected]>
* modules/pam_xauth/Makefile.am: Link with libselinux.
* modules/pam_xauth/pam_xauth.c(pam_sm_open_session): Call
setfscreatecon() if selinux is enabled to create the .xauth file
with the right label. Original idea by Dan Walsh.
2009-10-08 Tomas Mraz <[email protected]>
* modules/pam_tty_audit/pam_tty_audit.8.xml: Add notice about aureport
add SEE ALSO section.
2009-10-06 Tomas Mraz <[email protected]>
* modules/pam_listfile/pam_listfile.c(pam_sm_authenticate): Just
call pam_modutil_user_in_group_nam_nam() instead of reimplementation
of group matching.
2009-10-05 Kris Thomsen <[email protected]>
* po/da.po: Updated translations.
2009-09-29 Piotr Drąg <[email protected]>
* po/pl.po: Updated translations.
2009-09-21 Yulia Poyarkova <[email protected]>
* po/ru.po: Updated translations.
2009-09-17 Kiyoto Hashida <[email protected]>
* po/ja.po: Updated translations.
2009-09-17 Eunju Kim <[email protected]>
* po/ko.po: Updated translations.
2009-09-17 Yulia Poyarkova <[email protected]>
* po/ru.po: Updated translations.
2009-09-10 Steve Langasek <[email protected]>
* modules/pam_securetty/pam_securetty.c: pam_securetty should not
return PAM_USER_UNKNOWN when the tty is secure, regardless of what
was entered as a username.
Patch from Nicolas François <[email protected]>.
2009-08-31 Steve Langasek <[email protected]>
* modules/pam_namespace/namespace.init: make this portable to POSIX
awk, instead of using GNU awk extensions.
2009-08-25 Steve Langasek <[email protected]>
* modules/pam_sepermit/pam_sepermit.8.xml: fix up one reference
to pam.d(8) left behind because I've forgotten how CVS works
* po/es.po: fix missing whitespace in password prompts.
2009-08-24 Steve Langasek <[email protected]>
* doc/pam_get_authtok.3.xml: grammar fix.
* doc/adg/Linux-PAM-ADG.xml: Likewise.
* doc/mwg/Linux-PAM_MWG.xml: Likewise.
* doc/man/pam_setcred.3.xml: fix a typo.
2009-07-21 Thorsten Kukuk <[email protected]>
* modules/pam_cracklib/pam_cracklib.c (pam_sm_chauthtok): Delete
new token if it does not match strength criteria.
2009-06-29 Thorsten Kukuk <[email protected]>
* modules/pam_unix/yppasswd_xdr.c: Remove unnecessary header files.
* modules/pam_unix/support.c (_unix_getpwnam): Only compile in NIS
support if all necessary functions exist.
* modules/pam_unix/pam_unix_passwd.c (getNISserver): Add debug
option, handle correct if OS has no NIS support.
* modules/pam_access/pam_access.c (netgroup_match): Check if
yp_get_default_domain and innetgr are available at compile time.
* configure.in: Check for functions: innetgr, getdomainname
check for headers: rpcsvc/ypclnt.h, rpcsvc/yp_prot.h.
2009-06-29 Thorsten Kukuk <[email protected]>
* modules/pam_unix/pam_unix.8.xml: Fix blowfish description.
Reported by Diego E. “Flameeyes” Pettenò.
2009-06-26 Thorsten Kukuk <[email protected]>
* modules/pam_namespace/Makefile.am: Fix make maintainer-clean,
fix docu dependencies.
* modules/pam_xauth/Makefile.am: Fix make maintainer-clean.
* modules/pam_access/Makefile.am: Likewise.
* modules/pam_debug/Makefile.am: Likewise.
* modules/pam_deny/Makefile.am: Likewise.
* modules/pam_echo/Makefile.am: Likewise.
* modules/pam_env/Makefile.am: Likewise.
* modules/pam_faildelay/Makefile.am: Likewise.
* modules/pam_ftp/Makefile.am: Likewise.
* modules/pam_group/Makefile.am: Likewise.
* modules/pam_issue/Makefile.am: Likewise.
* modules/pam_keyinit/Makefile.am: Likewise.
* modules/pam_lastlog/Makefile.am: Likewise.
* modules/pam_limits/Makefile.am: Likewise.
* modules/pam_listfile/Makefile.am: Likewise.
* modules/pam_localuser/Makefile.am: Likewise.
* modules/pam_loginuid/Makefile.am: Likewise.
* modules/pam_mail/Makefile.am: Likewise.
* modules/pam_mkhomedir/Makefile.am: Likewise.
* modules/pam_motd/Makefile.am: Likewise.
* modules/pam_nologin/Makefile.am: Likewise.
* modules/pam_pwhistory/Makefile.am: Likewise.
* modules/pam_rhosts/Makefile.am: Likewise.
* modules/pam_rootok/Makefile.am: Likewise.
* modules/pam_securetty/Makefile.am: Likewise.
* modules/pam_shells/Makefile.am: Likewise.
* modules/pam_succeed_if/Makefile.am: Likewise.
* modules/pam_tally2/Makefile.am: Likewise.
* modules/pam_tally/Makefile.am: Likewise.
* modules/pam_time/Makefile.am: Likewise.
* modules/pam_timestamp/Makefile.am: Likewise.
* modules/pam_tty_audit/Makefile.am: Likewise.
* modules/pam_umask/Makefile.am: Likewise.
* modules/pam_unix/Makefile.am: Likewise.
* modules/pam_warn/Makefile.am: Likewise.
* modules/pam_wheel/Makefile.am: Likewise.
* modules/pam_filter/Makefile.am: Likewise.
* configure.in: Make regeneration of docu configureable,
rename enable_man to enable_docu.
* modules/pam_env/pam_env.c (_pam_parse): Fix typo in debug
code.
* modules/pam_cracklib/Makefile.am: Don't install docu if
module is disabled for building.
* modules/pam_userdb/Makefile.am: Likewise.
* modules/pam_unix/pam_unix_passwd.c: Remove dead SELinux
code.
* modules/pam_lastlog/pam_lastlog.c (last_login_failed): Fix
usage of wrong variable [bug#2809661].
2009-06-25 Thorsten Kukuk <[email protected]>
* configure.in: Rename crypt_gensalt_rn to crypt_gensalt_r
* modules/pam_unix/passverify.c: Likewise.
2009-06-19 Thorsten Kukuk <[email protected]>
* release version 1.1.0
2009-06-16 Thorsten Kukuk <[email protected]>
* doc/sag/Linux-PAM_SAG.xml: Fix typos.
* doc/adg/Linux-PAM_ADG.xml: Likewise.
* doc/mwg/Linux-PAM_MWG.xml: Likewise.
2009-06-08 Rajesh Ranjan <[email protected]>
* po/hi.po: Updated translations.
2009-06-01 Jaswinder Singh <[email protected]>
* po/pa.po: Updated translations.
2009-06-01 Tomáš Mráz <[email protected]>
* modules/pam_pwhistory/opasswd.c (save_old_password): Don't
call fclose() on NULL descriptor. Found by Steve Grubb.
2009-06-01 Ville Skyttä <[email protected]>
* modules/pam_limits/pam_limits.8.xml: Only *.conf
files are parsed. Spelling fixes.
* modules/pam_access/pam_access.8.xml: Spelling fixes.
* modules/pam_cracklib/pam_cracklib.8.xml: Likewise.
* modules/pam_echo/pam_echo.8.xml: Likewise.
* modules/pam_env/pam_env.8.xml: Likewise.
* modules/pam_exec/pam_exec.8.xml: Likewise.
* modules/pam_filter/pam_filter.8.xml: Likewise.
* modules/pam_ftp/pam_ftp.8.xml: Likewise.
* modules/pam_group/pam_group.8.xml: Likewise.
* modules/pam_issue/pam_issue.8.xml: Likewise.
* modules/pam_lastlog/pam_lastlog.8.xml: Likewise.
* modules/pam_listfile/pam_listfile.8.xml: Likewise.
* modules/pam_localuser/pam_localuser.8.xml: Likewise.
* modules/pam_loginuid/pam_loginuid.8.xml: Likewise.
* modules/pam_mkhomedir/pam_mkhomedir.8.xml: Likewise.
* modules/pam_motd/pam_motd.8.xml: Likewise.
* modules/pam_namespace/pam_namespace.8.xml: Likewise.
* modules/pam_pwhistory/pam_pwhistory.8.xml: Likewise.
* modules/pam_selinux/pam_selinux.8.xml: Likewise.
* modules/pam_succeed_if/pam_succeed_if.8.xml: Likewise.
* modules/pam_tally/pam_tally.8.xml: Likewise.
* modules/pam_tally2/pam_tally2.8.xml: Likewise.
* modules/pam_time/pam_time.8.xml: Likewise.
* modules/pam_timestamp/pam_timestamp.8.xml: Likewise.
* modules/pam_timestamp/pam_timestamp_check.8.xml: Likewise.
* modules/pam_tty_audit/pam_tty_audit.8.xml: Likewise.
* modules/pam_umask/pam_umask.8.xml: Likewise.
* modules/pam_unix/pam_unix.8.xml: Likewise.
* modules/pam_xauth/pam_xauth.8.xml: Likewise.
2009-05-28 Jaswinder Singh <[email protected]>
* po/pa.po: Updated translations.
2009-05-21 Albert Carabasa Giribet <[email protected]>
* po/ca.po: Updated translations.
2009-05-11 Ani Peter <[email protected]>
* po/ml.po: Updated translations.
2009-05-11 Charles-Antoine Couret <[email protected]>
* po/fr.po: Updated translations.
2009-05-11 Tomáš Mráz <[email protected]>
* modules/pam_unix/pam_unix_passwd.c (_unix_run_update_binary): Remove
unnecessary setuid() call.
2009-05-05 Thorsten Kukuk <[email protected]>
* release version 1.0.92
* libpamc/Makefile.am (libpamc_la_LDFLAGS): Increase revesion.
* configure.in: Increase version to 1.0.92.
2009-04-20 Mario Santagiuliana <[email protected]>
* po/it.po: Updated translations.
2009-04-17 Fabian Affolter <[email protected]>
* po/de.po: Updated translations.
2009-04-16 Tomáš Mráz <[email protected]>
* modules/pam_succeed_if/pam_succeed_if.c (evaluate): Add user
parameter. Use user instead of pwd->pw_name in comparsions.
(pam_sm_authenticate): Pass the original user to evaluate().
2009-04-14 Amitakhya Phukan <[email protected]>
* po/as.po: Updated translations.
2009-04-14 Runa Bhattacharjee <[email protected]>
* po/bn_IN.po: Updated translations.
2009-04-14 Sweta Kothari <[email protected]>
* po/gu.po: Updated translations.
2009-04-14 Sandeep Shedmake <[email protected]>
* po/mr.po: Updated translations.
2009-04-14 Rui Gouveia <[email protected]>
* po/pt.po: Updated translations.
2009-04-14 I. Felix <[email protected]>
* po/ta.po: Updated translations.
2009-04-14 Krishna Babu K <[email protected]>
* po/te.po: Updated translations.
2009-04-09 Thorsten Kukuk <[email protected]>
* modules/pam_unix/yppasswd.h: Update license to GPLv2 or later
on request of Olaf Kirch (Author).
* modules/pam_unix/yppasswd_xdr.c: Likewise.
2009-04-06 R.E. van der Luit <[email protected]>
* po/nl.po: Updated translations.
2009-04-06 Terry Chuang <[email protected]>
* po/zh_TW.po: Updated translations.
2009-04-03 Shankar Prasad <[email protected]>
* po/kn.po: Updated translations.
2009-04-03 Manoj Kumar Giri <[email protected]>
* po/or.po: Updated translations.
2009-04-03 Miloš Komarčević <[email protected]>
* po/sr.po: Updated translations.
* po/[email protected]: Updated translations.
2009-04-03 Leah Liu <[email protected]>
* po/zh_CN.po: Updated translations.
2009-04-03 Dmitry V. Levin <[email protected]>
* libpamc/pamc_load.c (__pamc_exec_agent): Replace call to exit(3)
in child process with call to _exit(2).
* modules/pam_mkhomedir/pam_mkhomedir.c (create_homedir): Likewise.
* modules/pam_unix/pam_unix_acct.c (_unix_run_verify_binary):
Likewise.
* modules/pam_unix/pam_unix_passwd.c (_unix_run_update_binary):
Likewise.
* modules/pam_unix/support.c (_unix_run_helper_binary): Likewise.
* modules/pam_xauth/pam_xauth.c (run_coprocess): Likewise.
* modules/pam_exec/pam_exec.c (call_exec): Replace all calls to
exit(3) in child process with calls to _exit(2).
* modules/pam_filter/pam_filter.c (set_filter): Likewise.
* modules/pam_namespace/pam_namespace.c (inst_init,
cleanup_tmpdirs): Likewise.
2009-03-27 Thorsten Kukuk <[email protected]>
* modules/pam_unix/support.c (_unix_run_helper_binary): Don't
ignore return value of write().
* libpamc/include/security/pam_client.h (PAM_BP_ASSERT): Honour
NDEBUG.