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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
|
2021-05-04 Jiri Kucera <jkucera@redhat.com>
* configure.ac: Release 1.114.
* NEWS: Update.
* .gitignore
* zanata.xml: Remove zanata.xml config.
* .hgtags: Remove .hgtags.
* autogen.sh: Add `--archive` option.
* Makefile.am: Adjust GTK conditionals, remove Mercurial relicts.
* shvar.c
* userhelper.c: Fix resource leaks.
2021-04-28 Jiri Kucera <jkucera@redhat.com>
* pam-panel-icon.1: Fix typo.
2020-12-06 Robert Scheck <robert@fedoraproject.org>
* Makefile.am
* configure.ac: Added `--without-gtk` option.
2020-09-11 Jiri Kucera <jkucera@redhat.com>
* po/*.po: Update.
2020-04-21 Tom Stellard <tstellar@redhat.com>
* Makefile.am: Link against `-lm`.
2020-04-07 Petr Lautrbach <plautrba@redhat.com>
* userhelper.c: selinux/{flask,av_permissions}.h deprecation.
2018-11-05 Jiri Kucera <jkucera@redhat.com>
* configure.ac: Release 1.113.
* NEWS: Update.
* configure.ac: Added `--with-fexecve` option.
* consolehelper.c
* gsmclient.c
* props.c
* shvar.c
* userhelper-wrap.c
* userhelper.c
* usermount.c: Fixed static scanner issues.
2018-08-07 Jiri Kucera <jkucera@redhat.com>
* usermount.c: Added missing `#include <sys/sysmacros.h>`.
* consolehelper-gtk.8
* consolehelper.8.in
* consolehelper.c
* dummy.h
* gsmclient.c
* gsmclient.h
* pam-panel-icon.1
* pam-panel-icon.c
* props.c
* props.h
* shvar.c
* shvar.h
* test-userdialog.c
* userdialogs.c
* userdialogs.h
* userhelper-messages.c
* userhelper-messages.h
* userhelper-wrap.c
* userhelper-wrap.h
* userhelper.8.in
* userhelper.c
* userhelper.h
* userinfo.1
* userinfo.c
* usermount.1
* usermount.c
* userpasswd.1
* userpasswd.c: Fixed bad FSF address.
2018-04-11 Jiri Kucera <jkucera@redhat.com>
* po/tr.po: Added missing '\n'.
2018-02-22 Jiri Kucera <jkucera@redhat.com>
* configure.ac: Release 1.112.
* zanata.xml: Updated translations.
* po/*.po: Updated translations.
* NEWS: Update.
2015-10-24 Miloslav Trmač <mitr@redhat.com>
* userhelper.8.in: Be more precise about exec*() vs. higher-level
execution. Use consistent capitalization.
* userhelper.c (string_has_forbidden_characters): New function.
(chfn): Refuse newline characters. Use
string_has_forbidden_characters() to refuse control characters as well,
purely for consistency with util-linux.
2015-06-25 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (chfn): Don’t pass NULL to lu_ent_set_string.
2015-03-21 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (fail_exit): Don't declare int return type for a
G_GNUC_NORETURN function.
* .tx/config: Remove.
* zanata.xml: Add. To pull updated translations, run (zanata-cli pull).
* po/usermode.pot: Remove autogenerated file. Unlike Transifex, Zanata
does not need it.
2013-07-08 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Add AM_PROG_AR to silence automake.
2013-04-02 Miloslav Trmač <mitr@redhat.com>
* usermount.1: Fix a typo. Patch by Tom London <selinux@gmail.com>.
2013-02-20 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (chfn): Use helper functions provided by new libuser
instead of verbosely dealing with GValue-s.
* configure.ac: Enable large file support, in particular to enable
working with 64-bit inode numbers.
2012-09-22 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.111.
* NEWS: Update.
* po/*: Update.
2012-08-21 Miloslav Trmač <mitr@redhat.com>
* userpasswd.c: Add missing includes.
* configure.ac: Release 1.110.
* NEWS: Update.
* po/*: Update.
* sample/README: New file.
* sample/shutdown: Move from ...
* shutdown: ... here.
* sample/wrapped.console: Move from ...
* wrapped.console: ... here.
* sample/wrapped.pamd: Move from ...
* shutdown.pamd: ... here.
* Makefile.am (EXTRA_DIST): Ship contents of the "sample" subdirectory,
remove PAM and userhelper configuration from the main one.
(dist_bin_SCRIPTS): Remove, the script is now in the "sample"
subdirectory.
(consoleappdir, WRAPPED_APPS, consoleapp_DATA): Remove, the
configuration is now in the "sample" subdirectory.
(DISTCLEANFILES): Remove no longer generated configuration files.
2012-08-20 Miloslav Trmač <mitr@redhat.com>
* usermount.c (main): Reject running (userformat) without arguments
instead of treating it like (usermount).
* usermount.1: Clarify that the "device" argument to (userformat) is
required.
* userinfo.c (parse_args): Don't output an additional error message
when getopt() has already provided a more precise one.
* userhelper.c (main)
* userinfo.c (parse_args)
* userpasswd.c (main): Terminate if unexpected command-line arguments
are received.
* po/POTFILES.in: Add userpasswd.c.
2012-03-03 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.109.
* NEWS: Update.
* po/*: Update.
2011-11-21 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (construct_cmdline): Don't end the command line with a
space when no arguments are used.
* gsmclient.h (gsm_client_get_id)
* gsmclient.c (gsm_client_get_id): Replace deprecated G_CONST_RETURN
by explicit `const'.
2011-10-03 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.108.
* NEWS: Update.
* po/*: Update.
2011-09-19 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (die): New function.
(fail_exit, become_super_supplementary_groups)
(become_super_other, become_super, become_normal)
(get_invoking_user, get_user_for_auth, chfn, wrap, main): Use die()
instead of exit(). New parameter `data' where necessary, all users
updated.
(wrap): Process GUI and NOXOPTION before other options that refer to
die().
* Makefile.am (userhelper_LDADD): Link with liblib.a.
* userhelper.c (struct app_data): New member conv.
(pipe_conv_exec_start, pipe_conv_exec_fail, passwd, chfn, wrap): Use
struct app_data, not struct pam_conv, as the primary context variable.
All users updated.
(main): Use app_data.conv instead of the separate conv variable.
* userhelper-messages.c
* userhelper-messages.h: New files.
* userhelper-wrap.c (userhelper_parse_exitstatus): Use
uh_existatus_message().
* po/POTFILES.in: Add userhelper-messages.c.
* Makefile.am (liblib_a_SOURCES): Add userhelper-messages.c and
userhelper-messages.h.
* Makefile.am (noinst_LIBRARIES): Replace libuh-dialogs.a and
libuh-wrap.a with a single liblib.a.
(userinfo_LDADD, usermount_LDADD, userpasswd_LDADD)
(consolehelper_gtk_LDADD, test_userdialog_LDADD): Use liblib.a instead
of libuh-wrap.a and libuh-dialogs.a.
(liblib_a_SOURCES, liblib_a_CPPFLAGS): New definitions, replacing...
(libuh_wrap_a_SOURCES, libuh_wrap_a_CPPFLAGS)
(libuh_dialogs_a_SOURCES): ... these removed definitions.
2011-09-17 Miloslav Trmač <mitr@redhat.com>
* Makefile.am (noinst_LIBRARIES, libuh_wrap_a_SOURCES)
(libuh_wrap_a_CPPFLAGS, libuh_dialogs_a_SOURCES): Define new convenience
libraries to avoid duplicate compliation.
(userinfo_SOURCES, userinfo_LDADD, usermount_SOURCES)
(usermount_LDADD, userpasswd_SOURCES, userpasswd_CPPFLAGS)
(userpasswd_LDADD, consolehelper_gtk_SOURCES)
(consolehelper_gtk_CPPFLAGS, consolehelper_gtk_LDADD)
(test_userdialog_SOURCES, test_userdialog_LDADD): Use the convenience
libraries.
* configure.ac: Invoke AC_PROG_RANLIB.
2011-06-28 Miloslav Trmač <mitr@redhat.com>
* usermount.c (build_mountinfo_list): Don't crash when /etc/fstab can't
be opened.
* usermount.c (format): Use GtkComboBoxText instead of deprecated
gtk_combo_box_new_text() and gtk_combo_box_append_text().
* configure.ac: Update minimum GTK+ version.
2011-03-31 Miloslav Trmač <mitr@redhat.com>
* NEWS: Fix a spectacular typo.
* configure.ac: Release 1.107.
* NEWS: Update.
* po/*: Update.
* po/LINGUAS: Update.
* Makefile.am (all-local, $(srcdir)/po/usermode.pot): Remove, this
breaks (make distcheck).
2011-03-13 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (converse_console): Check return value of
get_pam_string_item ().
(converse_pipe): Handle NULL from read_reply when all responses were
received.
* shvar.c (svWriteFile): Check return value of dup(), don't truncate
the file if dup() fails. (Note that this code is not used.)
2011-03-04 Miloslav Trmač <mitr@redhat.com>
* .tx/config: New file.
* Makefile.am (all-local, $(srcdir)/po/usermode.pot): Keep the .pot file
updated for Transifex.
* po/usermode.pot: Add to prepare for Transifex.
2011-01-11 John Bradshaw <john@johnbradshaw.org>
* userpasswd.1: Fix a typo.
2010-09-14 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.106.1.
* NEWS: Update.
2010-08-26 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.106.
* NEWS: Update.
2010-06-14 Miloslav Trmač <mitr@redhat.com>
* consolehelper.c (main)
* userhelper-wrap.c (userhelper_run)
* userhelper.c (converse_console, wrap): Use g_malloc*_n ().
2010-06-12 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Define PACKAGE_BUREPORT and PACKAGE_URL.
* autogen.sh: Run aclocal with -Wall.
2010-05-30 Miloslav Trmač <mitr@redhat.com>
* userinfo.c (on_ok_clicked)
* usermount.c (response_callback): Use gtk_widget_is_toplevel () instead
of deprecated GTK_WIDGET_TOPLEVEL ().
2010-04-08 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.105.
* NEWS: Update.
* userhelper.h
* userhelper.c
* userhelper-wrap.c: Remove #ifdef USE_STARTUP_NOTIFICATION where
the clutter is not worth it.
* userhelper.c (converse_pipe, wrap)
* userhelper-wrap.c (userhelper_handle_childout): Remove #ifdef
USE_STARTUP_NOTIFICATION, adding some parsing and data movements. The
actual functionality is still controlled by the #ifdef.
* userhelper.c (send_sn_info): Split from converse_pipe().
(converse_pipe): Fix getting the value of UH_SN_ID.
(pipe_conv_wait_for_sync): Handle incoming UH_SN_ID. Add a debug
message.
(pipe_conv_exec_start, pipe_conv_exec_fail): Send startup notification
information.
* userhelper-wrap.c (userhelper_handle_childout): Clean up startup
notification if we open another dialog.
* consolehelper.c (main): Don't put garbage in DESKTOP_STARTUP_ID if it
was unset.
2010-03-31 Miloslav Trmač <mitr@redhat.com>
* userhelper.h (ERR_MAX_TRIES): New definition.
* userhelper.c (fail_exit): Convert PAM_MAXTRIES into ERR_MAX_TRIES.
* userhelper-wrap.c (userhelper_parse_exitstatus): Add error message for
ERR_MAX_TRIES.
2010-03-26 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.104.2.
* NEWS: Update.
2010-03-04 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.104.1.
* NEWS: Update.
* po/LINGUAS: Sort.
* Makefile.am (archive)
* configure.ac: Use xz to compress the distribution tarball.
2010-02-25 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.104.
* NEWS: Update.
* userhelper-wrap.c (userhelper_read_childout): Handle messages in
non-UTF-8 encodings that use more bytes in UTF-8.
(userhelper_runv): Disable character set conversion in childout_channel.
2010-02-16 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.103.
* NEWS: Update.
* po/LINGUAS: Update.
2010-02-05 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (become_super_supplementary_groups)
(become_super_other): Split from become_super().
(wrap): Use pam_setcred().
* userhelper.c (become_super): Use root's supplementary groups.
* userhelper.c (passwd, chfn, wrap): Use "data" instead of
dereferencing conv->appdata_ptr again.
* userhelper.c (set_pam_items): New function.
(passwd, chfn, wrap): Use pam_set_items.
2010-02-04 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (become_super): Check for failures of the system
calls in addition to verifying the expected results.
(become_normal): Check for failures of the system
calls in addition to verifying the expected results. Call setregid()
as well. Verify the real gid/uid values.
2009-10-05 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.102.
* NEWS: Update.
* consolehelper-gtk.8: New file, based on a Debian man page by
Christopher Cramer.
* pam-panel-icon.1: New file.
* Makefile.am (dist_man_MANS): Add consolehelper-gtk.8 and
pam-panel-icon.1.
* usermount.1: Document userformat better.
* consolehelper.8.in (BUGS): Remove text referring to
developer.redhat.com.
2009-09-15 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.101.
* NEWS: Update.
* po/LINGUAS: Update.
2009-06-15 Miloslav Trmač <mitr@redhat.com>
* userinfo.c (create_userinfo_window, on_ok_clicked, main): Port from
libglade to GtkBuilder.
* userinfo.ui: New file, replaces ...
* usermode.glade: ... this.
* Makefile.am (EXTRA_DIST): Remove usermode.glade.
(AM_CFLAGS): Use GTK_CFLAGS instead of LIBGLADE_CFLAGS.
(dist_pkgdata_DATA): Rename from pkgdata_DATA. Ship usermode.ui instead
of usermode.glade
(userinfo_LDADD): Use with GTK_LIBS instead of LIBGLADE_LIBS.
* configure.ac: Remove check for libglade. Update minimum gtk+ version
to 2.12.
* po/POTFILES.in: Replace usermode.glade with usermode.ui.
* Makefile.am (EXTRA_DIST): Remove files that are marked for
distribution using the dist_ prefix.
(dist_bin_SCRIPTS): Rename from bin_SCRIPTS.
(dist_man_MANS): Rename from man_MANS.
(man_MANS): Rename from dist_man_MANS. Update CLEANFILES.
(dist_pixmap_DATA): Rename from pixmap_DATA.
2009-06-14 Miloslav Trmač <mitr@redhat.com>
* userhelper-wrap.c (userhelper_grab_keyboard)
(userhelper_handle_childout)
* usermount.c (format, create_usermount_window): Use accessor functions
instead or referencing the structure members directly (as detected using
-DGSEAL_ENABLE).
2009-04-14 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.100.
* NEWS: Update.
* po/LINGUAS: Update.
* autogen.sh
* Makefile.am (EXTRA_DIST, DISTCLEANFILES): Update for newer intltool.
2008-11-27 Miloslav Trmač <mitr@redhat.com>
* userhelper-wrap.c (userhelper_handle_childout)
* usermount.c (format, create_usermount_window): Don't use interfaces
deprecated in GTK+ 2.14.
2008-11-11 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (send_request): Fix printf format mismatch. Make sure
data is not too large.
2008-11-11 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.99.
* NEWS: Update.
* userhelper.h: Document request and response formats.
(UH_REQUEST_SIZE_DIGITS): New macro.
(UH_SN_ID): Use a printable character value.
* userhelper.c (send_request, send_request_int): New functions.
(converse_pipe, prompt_pipe): Use send_request and send_request_int.
* userhelper-wrap.c (userhelper_handle_childout): Rename from
userhelper_parse_childout. Receive an already parsed message as
parameters.
(userhelper_read_childout): Handle the updated request format.
2008-10-28 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.98.1.
* NEWS: Update.
* po/LINGUAS: Update.
2008-08-03 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Release 1.98.
* NEWS: Update.
* userhelper-wrap.c (struct response): Remove member user. New memeber
user_label.
(userhelper_parse_childout): Create the "Authenticating as..." label
as soon as the user name is known, not only when creating the dialog
to ask questions. (Also causes the label to be shown in non-modal
dialogs with no prompts.)
* userhelper-wrap.c (userhelper_parse_childout): Left-justify all
messages.
* userhelper-wrap.c (struct response): New member
dialog_response_handler.
(userhelper_dialog_response): New function.
(userhelper_parse_childout): Support non-modal dialogs with no prompts.
Keep resp->table alive across such dialogs. Don't unnecessarily zero
members of resp before freeing it.
* userhelper-wrap.c (debug_msg)
* userhelper.c (debug_msg)
* userinfo.c (debug_msg): New macro. Use it instead of surrounding
debug prints with #ifdef DEBUG_USERHELPER.
2008-05-17 Miloslav Trmač <mitr@redhat.com>
* userhelper.c (wrap): Remove /usr/X11R6/bin from the default path.
Original patch by Michel Samia <msamia@redhat.com>.
2008-05-01 Miloslav Trmač <mitr@redhat.com>
* configure.ac: Rename from configure.in. Version 1.97.
* NEWS: Update.
* userhelper-wrap.c (userhelper_parse_childout): Don't interpret '_'
in prompts as mnemonic character markup.
2008-04-10 Miloslav Trmač <mitr@redhat.com>
* configure.in: Version 1.96.1.
* NEWS: Update.
2008-03-23 Miloslav Trmač <mitr@redhat.com>
* po/hu.po: Updated Hungarian translation by Lónyai Gergely
<aleph@mandriva.org>.
2008-02-29 Miloslav Trmač <mitr@redhat.com>
* configure.in: Version 1.96.
* NEWS: Update.
* userhelper.c (selinux_enabled, get_init_context, setup_selinux_exec)
(setup_selinux_root_exec, setup_selinux_user_exec): Remove.
(wrap): Don't override SELinux contexts of created processes.
(main): Inline the is_selinux_enabled() call now that selinux_enabled
is not used anywhere else.
2008-02-25 Miloslav Trmač <mitr@redhat.com>
* configure.in: Version 1.95.
* NEWS: Update.
* userhelper.c (wrap): Fix returning the exit code of the child process
if (session).
* README: Add some content.
* userinfo.desktop.in (Icon)
* usermount.desktop.in (Icon)
* userpasswd.desktop.in (Icon): Remove extension from the icon name
to allow non-PNG themes.
* userinfo.desktop.in (Encoding)
* usermount.desktop.in (Encoding)
* userpasswd.desktop.in (Encoding): Remove (the item is obsolete).
2008-02-24 Miloslav Trmač <mitr@redhat.com>
* userinfo.desktop.in (Categories): Add missing trailing semicolon.
* po/POTFILES.in: Add gsmclient.c. Sort alphabetically.
* Makefile.am (HGTAG): Replace CVSTAG.
(tag, forcetag, archive): Update to use Mercurial.
2008-01-10 Miloslav Trmač <mitr@redhat.com>
* configure.in: Release 1.94.
* NEWS: Update.
* po/sr@latin.po: Rename from po/sr@Latn.po.
* po/LINGUAS: Update.
* userhelper.8.in: Beautify.
* shvar.c (relative_to, svInclude): New functions.
(svOpenFile): Add support for including other files.
Original patch by Carlo de Wolf <cdewolf@redhat.com>.
* userhelper.8.in: Document wrapper configuration file format.
2007-10-16 Miloslav Trmač <mitr@redhat.com>
* configure.in: Release 1.93.1.
* NEWS: Update.
* po/no.po: Remove (obsoleted by po/nb.po).
* po/LINGUAS: Remove "no".
* userhelper-wrap.c (trap_push, trap_pop): Avoid a warning.
* userhelper-wrap.c: Don't #include <libwnck/libwnck.h>.
* configure.in: Don't require libwnck.
* Makefile.am (AM_CFLAGS, userinfo_LDADD, userpasswd_LDADD)
(consolehelper_gtk_LDADD): Don't link with libwnck.
2007-09-29 Miloslav Trmač <mitr@redhat.com>
* po/LINGUAS: Update.
2007-09-05 Miloslav Trmač <mitr@redhat.com>
* configure.in: Release 1.93.
* NEWS: Update.
* userhelper-wrap.c (struct response): Remove member ready.
(userhelper_parse_childout): Use prompt_type directly instead of
resp->ready.
* userhelper-wrap.c (userhelper_parse_childout): Only respond with
UH_SYNC_POINT once to an UH_SYNC_POINT with no responses requested,
not after each new message.
2007-06-11 Miloslav Trmač <mitr@redhat.com>
* configure.in: Release 1.92.
* NEWS: Update.
* userinfo.desktop.in
* usermount.desktop.in
* userpasswd.desktop.in: Add the categories that are added by
(make install) or the Fedora spec file.
* Makefile.am (install-data-local): Don't add categories to desktop
files. Simplify.
* Makefile.am (EXTRA_DIST, man_MANS, dist_man_MANS, CLEANFILES): Fix
distcheck.
* configure.in: Add AM_PROG_CC_C_O.
(BINDIR, SBINDIR, DATADIR, LOCALEDIR, SYSCONFDIR): Remove. These
definitions are expanded at the wrong time and tend to be expanded
incorrectly.
(AC_CONFIG_FILES): Remove consolehelper.8 and userhelper.8.
* Makefile.am (AM_CPPFLAGS, BINDIR_CPPFLAGS, PIXMAPDIR_CPPFLAGS)
(SBINDIR_CPPFLAGS, userhelper_CPPFLAGS, userinfo_CPPFLAGS)
(usermount_CPPFLAGS, userpasswd_CPPFLAGS, consolehelper_CPPFLAGS)
(consolehelper_gtk_CPPFLAGS, pam_panel_icon_CPPFLAGS): New variables.
(consolehelper.8, userhelper.8): New rules.
(AM_CFLAGS): Move -DGETTEXT_PACKAGE to pam_panel_icon_CPPFLAGS.
* userinfo.c (create_userinfo_window): Use PKGDATADIR.
* pam-panel-icon.c (refresh_tray_icon)
* userhelper-wrap.c (userhelper_parse_childout)
* userinfo.c (create_userinfo_window)
* usermount.c (create_usermount_window): Use PIXMAPDIR.
* userhelper-wrap.c (userhelper_parse_childout): Fix a memory leak.
* userhelper.c (wrap, main): Use the locale's charset.
(converse_console): Don't re-set the charset to the locale's charset,
it is now the default.
* userhelper-wrap.c (write_childin_string): New function.
(userhelper_write_childin): Convert written data to the locale's
charset if possible. Simplify and reformat.
(userhelper_runv): Convert data read from the child from the locale's
charset to UTF-8.
* userhelper-wrap.c: Remove unnecessary #includes.
* userinfo.c: Remove unnecessary #includes.
* userhelper-wrap.c (userhelper_parse_childout): Modify to handle only
one line. Exit if the commmand code is invalid.
(userhelper_read_childout): Always read a complete line, not what
partial line happens to be read. Repeat while there are lines left.
(userhelper_runv): Don't assume the communication is in UTF-8. Set the
only expected line terminator. Don't make the channel non-blocking to
make sure a partial line is always read until it is finished.
* userhelper-wrap.c (struct message): Remove typedef.
2007-06-09 Miloslav Trmač <mitr@redhat.com>
* configure.in: Release 1.91.2.
* NEWS: Update.
2007-06-09 Miloslav Trmac <mitr@redhat.com>
* userhelper.c (converse_console, converse_pipe): Don't replace
/.*password.*/i by "Password for %s".
(converse_console): Tell the user what user he should authenticate as.
* userhelper-wrap.c (userhelper_parse_childout): Don't initialize
resp->user from guessed data, always keep the UH_USER value. Tell the
user what user he should authenticate as.
2007-04-19 Miloslav Trmac <mitr@redhat.com>
* configure.in: Release 1.91.1.
* NEWS: Update.
* po/LINGUAS: Note that empty translations are removed.
2007-03-26 Miloslav Trmac <mitr@redhat.com>
* consolehelper.c: Allow building consolehelper-nox.c without GTK+
headers. Patch by Robert Scheck <redhat-bugzilla@linuxnetz.de>.
2007-03-19 Miloslav Trmac <mitr@redhat.com>
* configure.in: Release 1.91.
* NEWS: Update.
2007-03-17 Miloslav Trmac <mitr@redhat.com>
* userhelper.c (wrap): Preserve values of all environment variables
configured in KEEP_ENV_VARS. Fix one of the memory leaks.
* userhelper.8.in (KEEP_ENV_VARS): Document variable.
* userhelper.c (wrap): Use a single "val" variable instead of
apps_banner, apps_sn, apps_domain, retry, noxoption.
* pam-panel-icon.c (handle_drop_response): Use a static variable for
the constant argv.
* configure.in: Add more warning flags. Fix all "unused parameter"
warnings. Add casts to silence all warnings caused by using char **
for argument lists.
(gccwerror): Process only if using gcc.
* gsmclient.c (gsm_client_get_type): Add a missing initializer.
(replace_one_prop): Don't shadow link ().
* pam-panel-icon.c (child_io_func): Make "message" a const char *.
* userdialogs.c (crate_message_box, create_error_box): Use
const gchar * for input strings.
* userdialogs.h (create_message_box, create_error_box): Update
prototypes.
* userhelper-wrap.c (userhelper_parse_exitstatus). Update codes.create
prototype.
(userhelper_runv, userhelper_run): Use const char * for "path".
* userhelper-wrap.h (userhelper_runv, userhelper_run): Update
prototypes.
* userhelper.c (prompt_pipe): Initialize "error" when returning FALSE.
Remove dead code after an infinite cycle.
(shell_valid): Fix a thinko, change the correct variable when handling
empty shell names.
(wrap): Use const char * for saved environment values.
* usermount.c (format): Rename variable "format" to "fdformat" to avoid
shadowing the function name.
2007-03-14 Miloslav Trmac <mitr@redhat.com>
* pam-panel-icon.c (drop_menu_response_cb): Workaround a warning about
pointer and integer size mismatch.
* configure.in: Release 1.90.
* NEWS: Update.
* Makefile.am (AM_CFLAGS): Remove redundant -DDATADIR.
* userhelper.c (converse_pipe): Remove a redundant if.
* Makefile.am (AM_CFLAGS, install-data-local, uninstall-local)
(userinfo_LDADD): Clean up.
* userinfo.c (environ): Remove unnecessary declaration.
(create_userinfo_window): Use DATADIR.
(set_new_userinfo): Remove duplicate conditionals.
(main): Use LOCALEDIR. Remove unnecessary gtk_set_locale ().
* userhelper.c (converse_pipe): Handle startup notification data after
UH_FALLBACK.
* userhelper-wrap.c (childout): Make local.
(childout_tag): Initialize to 0.
(struct message, struct response): Move from userhelper-wrap.h.
(struct message): Remove member message, it is an invalid pointer used
only for debugging.
(userhelper_fatal_error): Use a single static function.
(userhelper_parse_exitstatus): Use N_(), make the message list
a constant.
(userhelper_grab_keyboard): Move the #ifndef inside to avoid an #ifndef
at the caller.
(fake_respond_ok): Use the correct prototype.
(userhelper_parse_childout): Use isspace () correctly. Use DATADIR.
Fix a memory leak. Beautify.
(userhelper_child_exited): Update for g_child_watch_add ().
(userhelper_read_chilout): Update for GIOChannel usage.
(userhelper_runv): Use g_io_add_watch () instead of deprecated
gdk_input_add (). Use g_child_watch_add () instead of VteReaper. Only
call sysconf(_SC_OPEN_MAX) once. Add a comment about STDIN_FILENO
validity.
(userhelper_run): Avoid unnecessary string copies.
* userhelper-wrap.h: Remove unnecessary #includes.
(UH_ACTION_AREA): Remove unused macro.
(userhelper_fatal_error): Remove prototype.
* marshal.list
* reaper.c
* reaper.h: Remove.
* Makefile.am (BUILT_SOURCES): Remove.
(EXTRA_DIST): Remove marshal.list.
(userhelper_LDADD): Clean up.
(consolehelper_gtk_SOURCES, userinfo_SOURCES, userpasswd_SOURCES): Drop
reaper.c, reaper.h, marshal.c and marshal.h.
(marshal.c, marshal.h): Remove.
* configure.in (GLIB_GENMARSHAL): Remove.
* consolehelper.c (userhelper_fatal_error)
* userinfo.c (userhelper_fatal_error)
* userpasswd.c (userhelper_fatal_error): Remove.
* Makefile.am (usermount_SOURCES): Add userdialogs.h.
* configure.in (SELINUX_LIBS): Remove unnecessary -lattr.
* pam-panel-icon.c (child_io_func): Use the parameter instead of
a global variable.
* userhelper.c: Remove unnecessary #includes.
(get_init_context): Avoid duplicate strlen() call.
(setup_selinux_exec): Gather common code from
setup_selinux_root_exec () and setup_selinux_user_exec ().
(setup_selinux_root_exec, setup_selinux_user_exec): Transparently
handle !WITH_SELINUX to avoid #ifdefs in the callers.
(fail_exit): Avoid duplicated code.
(read_reply): Don't unnecessarily clean the buffer. Simplify.
(get_pam_string_item): Fix an aliasing violation.
(free_reply): New function.
(converse_pipe): Don't use g_malloc0 () and g_strdup () for strings
that will be free ()'d. Fix memory leaks.
(converse_console): Fix messages allocation. Fix memory leaks.
(gecos_parse): Fix comment. Simplify.
(gecos_size): Use size_t.
(gecos_assemble): Use size_t.
(gecos_free): New function.
(shell_valid): Simplify.
(get_invoking_user): Fix comment.
(get_user_for_auth): Don't use free () where g_free () should be used.
Fix a memory leak.
(chfn): Fix a debug message. Fix memory leaks.
(construct_cmdline): Use g_strjoinv ().
(wrap): Don't allocate copies of data for setenv (). Use intmax_t for
uid_t output. Use g_strconcat () instead of g_strdup_printf (). Fix
some of the memory leaks. Use LOCALEDIR. Use waitpid () instead of
wait4 (), which is not specified by SUSv3.
(main): Use LOCALEDIR. Fix a memory leak.
* usermount.c (build_mountinfo_list): Make dev a char *, it is passed
to free ().
* pam-panel-icon.c (main, refresh_tray_icon): Load the pixbuf when
initializing the status icon, not when starting the program.
(refresh_tray_icon): Only initialize the status icon when it needs to
be visible, saving 312 kB of DRS as reported by ps(1).
* userpasswd.c: Don't #include "userdialogs.h", use <libintl.h>
instead.
(main): Use LOCALEDIR. Remove unnecessary gtk_set_locale ().
2007-03-13 Miloslav Trmac <mitr@redhat.com>
* usermount.c (ACTION_FORMAT, ACTION_MOUNT): Use an enum.
(struct mountinfo): Remove members mount, format, mount_label. All
users updated.
(is_mounted): Replace check_is_mounted (), remove unnecessary checks,
modify to be usable from build_mountinfo_list ().
(build_mountinfo_list): Use libblkid for LABEL= and UUID= resolution.
Add support for "user" and "users". Simplify and clean up.
(format): Remove copy&pasted info->mounted changes. FIx memory leaks.
(response_callback): Use the correct prototype. Remove info->mounted
changes, rely on changed_callback () instead. Fix a memory leak.
(create_usermount_window): Use DATADIR. Remove local variables
duplicating static variables.
(main) Use LOCALEDIR. Remove unnecessary gtk_set_locale ().
* Makefile.am (usermount_LDADD): Link with libblkid.
* usermount.1: Fix a typo.
* pam-panel-icon.c (RESPONSE_DO_NOTHING): Use a positive number to
avoid conflicts with GTK+.
* Makefile.am (usermount_LDADD, userpasswd_LDADD): Use GTK_LIBS instead
of LIBGLADE_LIBS. Clean up.
* userdialogs.c: Remove unnecessary #include.
* usermount.c: Remove all libglade references.
* usermode.glade (query_box, message_box): Remove unused dialogs.
* usermode.glade1: Remove obsolete file.
2007-03-11 Miloslav Trmac <mitr@redhat.com>
* userdialogs.c (relay_value, create_query_box_i, create_query_box)
(create_invisible_query_box): Remove, the functions were used only in
test-userdialog.c.
* userdialogs.h: Remove unused includes.
(UD_OK_TEXT, UD_HELP_TEXT, UD_CANCEL_TEXT)
(UD_EXIT_TEXT): Remove unused macros.
(create_query_box, create_invisible_query_box): Remove declarations.
* userhelper-wrap.c
* userinfo.c: #include <glib/gi18n.h>.
* test-userdialog.c (hello_world): Make static.
(main): Remove create_query_box () and create_invisible_query_box ()
examples.
(hello_world2): Remove.
* test-userdialog.c (main): Use LOCALEDIR. Don't unnecessarily call
gtk_set_locale (). Remove all libglade references.
* Makefile.am (test_userdialog_LDADD): Use GTK_LIBS instead of
LIBGLADE_LIBS. Clean up.
* shutdown.pamd.6x: Remove obsolete configuration.
* Makefile.am (EXTRA_DIST): Remove shutdown.pamd.6x.
* pam-panel-icon.c (main): Use LOCALEDIR.
* pam-panel-icon.c (child_io_source, child_watch_source): New variables.
(running_init_pid): Remove.
(handle_drop_response): Split from drop_menu_response_cb. Don't
duplicate dialog creation code.
(drop_menu_response_cb): Use the correct prototype. All users updated.
(drop_dialog_response_cb): Use the correct prototype. Use
handle_drop_response ().
(drop_menu_items): Make local to handle_popup ().
(child_pid): Make local to launch_checker ().
(handle_button): Split and integrate into callers.
(handle_popup): Use gtk_status_icon_position_menu ().
(refresh_tray_icon): Replace ensure_tray_icon (),
show_unlocked_icon (), show_locked_icon (). Use
gtk_status_icon_set_visible () instead of switching the pixbuf between
NULL and locked_pixbuf.
(child_io_func): Remove dead running_init_pid handling. Don't create
copies of the status messages. Don't poll for the exit status of the
checker.
(child_watch_func): New function.
(launch_checker): Clean up after the previous launch instead of
assuming the callers do it. Watch the checker's exit.
(session_save_callback, session_die_callback): Use the correct
prototype.
* pam-panel-icon.c (tray_icon, drop_dialog): Make a void * to avoid
an aliasing violation in g_object_add_weak_pointer ().
(add_weak_widget_pointer, add_weak_status_icon_pointer): Integrate into
the callers.
* Makefile.am (EXTRA_DIST, INIT_APPS): Remove remaining traces of
pam_timestamp_init.
* pam_timestamp_init.console
* pam_timestamp_init.pamd: Remove.
* pam-panel-icon.c: Remove !HAVE_GTK20 code.
* configure.in (HAVE_GTK20): Assume GTK+ 2.10, remove the conditional.
* Makefile.am (EXTRA_DIST, EGGFILES, EGGDIR, regenerate-build-sources):
Remove eggtrayicon and related files.
(pam_panel_icon_SOURCES): Don't use eggtrayicon.
* egg-marshal.c
* eggmarshalers.list
* eggtrayicon.c
* eggtrayicon.h
* update-from-egg.sh: Remove.
* configure.in: Get pkg-config data of GTK+.
(SELINUX_LIBS): New variable, use separately from LIBS.
* Makefile.am (consolehelper_LDADD, consolehelper_gtk_LDADD)
(pam_panel_icon_LDADD): Use GTK_LIBS instead of LIBGLADE_LIBS. Clean
up.
(pam_panel_icon_SOURCES): Remove unnecessary marshal.c.
(userhelper_LDADD): Use SELINUX_LIBS.
2007-03-10 Miloslav Trmac <mitr@redhat.com>
* pam-panel-icon.c
* userdialogs.h
* usermount.c: #include <glib/gi18n.h> instead of #defining _() and
N_() manually.
* userhelper.c: #include <glib/gi18n.h>
* userhelper.h: Don't #define _(), it is not used in the header.
2007-03-10 Miloslav Trmac <mitr@redhat.com>
* userhelper.c (pipe_conv_exec_start): Don't run an empty transaction,
it apparently serves no purpose and it may reference PAM data after
freeing it.
* userhelper-wrap.c (userhelper_parse_childout): Add a headline when
changing user password. Simplify the code a bit.
* usermount.c (format): Use a GtkComboBox instead of obsolete
GtkOptionMenu.
* usermode.glade (userinfo.shellmenu): Use a GtkComboBox instead of
obsolete GtkOptionMenu.
* userinfo.c (USERINFO_DATA_NAME): Remove.
(struct UserInfo.shellmenu): Allow freeing the value.
(shell_changed): Replace shell_activate (). Work with GtkComboBox.
Pass userinfo directly instead of using USERINFO_DATA_NAME.
(create_userinfo_window): Use GtkComboBox for shellmenu. Pass userinfo
to shell_changed () and on_ok_clicked () directly instead of using
USERINFO_DATA_NAME.
(on_ok_clicked): Pass userinfo directly instead of using
USERINFO_DATA_NAME.
2007-03-09 Miloslav Trmac <mitr@redhat.com>
* userhelper.c (wrap): Disable exit status interpretation by the parent
when the GUI mode is disabled.
* configure.in: Release 1.89.
* NEWS: Update.
* glade.strings.h: Remove, intltool handles glade files directly.
* po/POTFILES.in: Don't use glade.strings.h
* Makefile.am (EXTRA_DIST): Don't ship mkinstalldirs and usermode.spec.
Update intltool script location.
* usermode.spec: Remove to avoid divergence from Fedora CVS.
* configure.in: Replace obsolete macros. Use AC_MSG_CHECKING instead
of custom AC_MSG_RESULT usage. Quote all m4 macro invocations
and shell variable expansions where necessary.
(AC_INIT): Move the main version number here from usermode.spec.
(AM_INIT_AUTOMAKE): Use dist-bzip2, Wall.
(PAM_LIBS): Don't pull in -ldl unnecessarily.
(ALL_LINGUAS): Move ...
* po/LINGUAS: ... here, add missing languages.
* autogen.sh: Don't use rpm's opt flags by default. Update for
AC_CONFIG_AUX_DIR. Run autotools in the correct order, and with all
warnings enabled. Don't run configure automatically, only suggest
its usage.
* Makefile.am (VERSION, RELEASE): Remove, rely on configure to set a
value.
(CVSTAG): Use only $(VERSION). Use '_' instead of '-' for '.'.
(distdir): Remove duplicate definition.
(BUILT_SOURCES): New variable.
(reaper.c): Remove rule, it breaks compilation with separate build dir.
(tag, forcetag, archive): Handle compilation with separate build dir.
(archive): Update for new autogen.sh.
* userhelper-wrap.c (userhelper_run): Don't unnecessary clear the
memory before overwriting it. Fix a memory leak.
* userhelper-wrap.c (userhelper_runv): Use "char **", to be consistent
with main () and execve (). All callers updated.
* userhelper-wrap.h (userhelper_runv): Update prototype.
* reaper.c (vte_reaper_channel_destroyed):
* userhelper.c (fail_exit, passwd, chfn): Use G_GNUC_NORETURN.
* consolehelper.c (main): Use LOCALEDIR. Remove unnecessary call to
gtk_set_locale (). Beautify a bit.
* autogen.sh: Remove unnecessary libtoolize call. Allow symbolic link
usage. Simplify config.cache removal.
* userhelper.c (pipe_conv_wait_for_sync): New function.
(pipe_conv_exec_start, pipe_conv_exec_fail): Wait until the parent's
status changes.
(wrap): Handle pipe_conv_exec_start () failures. Preserve exit status
of processes run in their own session.
* userhelper-wrap.c (userhelper_parse_childout): Acknowledge
a transaction containing UH_EXEC_START and UH_EXEC_FAILED with
UH_SYNC_POINT like any other transaction.
2007-03-08 Miloslav Trmac <mitr@redhat.com>
* userhelper-wrap.c (child_exit_status): New variable.
(userhelper_parse_exitstatus): Save the child's exit status.
(userhelper_runv): Return the child's exit status.
* userhelper-wrap.h (userhelper_runv): Update prototype.
* consolehelper.c (main): Pass the child's exit status to the parent
process.
|