1 [[!template id=plugin name=unixauth core=0 author="[[schmonz]]"]]
4 This plugin authenticates users against the Unix user database. It presents a similar UI to [[plugins/passwordauth]], but simpler, as there's no need to be able to register or change one's password.
6 To authenticate, either [checkpassword](http://cr.yp.to/checkpwd.html) or [pwauth](http://www.unixpapa.com/pwauth/) must be installed and configured. `checkpassword` is strongly preferred. If your web server runs as an unprivileged user -- as it darn well should! -- then `checkpassword` needs to be setuid root. (Or your ikiwiki CGI wrapper, I guess, but don't do that.) Other checkpassword implementations are available, notably [checkpassword-pam](http://checkpasswd-pam.sourceforge.net/).
8 Config variables that affect the behavior of `unixauth`:
10 * `unixauth_type`: defaults to unset, can be "checkpassword" or "pwauth"
11 * `unixauth_command`: defaults to unset, should contain the full path and any arguments
12 * `unixauth_requiressl`: defaults to 1, can be 0
13 * `sslcookie`: needs to be 1 if `unixauth_requiressl` is 1 (perhaps this should be done automatically?)
15 __Security__: [As with passwordauth](/security/#index14h2), be wary of sending usernames and passwords in cleartext. Unlike passwordauth, sniffing `unixauth` credentials can get an attacker much further than mere wiki access. Therefore, this plugin defaults to not even _displaying_ the login form fields unless we're running under SSL. Nobody should be able to do anything remotely dumb until the admin has done at least a little thinking. After that, dumb things are always possible. ;-)
17 `unixauth` tests for the presence of the `HTTPS` environment variable. `Wrapper.pm` needs to be tweaked to pass it through; without that, the plugin fails closed.
19 [[!toggle id="diff" text="Wrapper.pm.diff"]]
21 [[!toggleable id="diff" text="""
23 --- Wrapper.pm.orig 2008-07-29 00:09:10.000000000 -0400
25 @@ -28,7 +28,7 @@ sub gen_wrapper () { #{{{
27 push @envsave, qw{REMOTE_ADDR QUERY_STRING REQUEST_METHOD REQUEST_URI
28 CONTENT_TYPE CONTENT_LENGTH GATEWAY_INTERFACE
29 - HTTP_COOKIE REMOTE_USER} if $config{cgi};
30 + HTTP_COOKIE REMOTE_USER HTTPS} if $config{cgi};
32 foreach my $var (@envsave) {
37 [[!toggle id="code" text="unixauth.pm"]]
39 [[!toggleable id="code" text="""
42 # Ikiwiki unixauth authentication.
43 package IkiWiki::Plugin::unixauth;
50 hook(type => "formbuilder_setup", id => "unixauth",
51 call => \&formbuilder_setup);
52 hook(type => "formbuilder", id => "unixauth",
53 call => \&formbuilder);
54 hook(type => "sessioncgi", id => "unixauth", call => \&sessioncgi);
57 # Checks if a string matches a user's password, and returns true or false.
58 sub checkpassword ($$;$) { #{{{
61 my $field=shift || "password";
63 # It's very important that the user not be allowed to log in with
65 if (! length $password) {
70 if (! exists $config{unixauth_type}) {
71 # admin needs to carefully think over his configuration
74 elsif ($config{unixauth_type} eq "checkpassword") {
75 open UNIXAUTH, "|$config{unixauth_command} true 3<&0" or die("Could not run $config{unixauth_type}");
76 print UNIXAUTH "$user\0$password\0Y123456\0";
80 elsif ($config{unixauth_type} eq "pwauth") {
81 open UNIXAUTH, "|$config{unixauth_command}" or die("Could not run $config{unixauth_type}");
82 print UNIXAUTH "$user\n$password\n";
87 # no such authentication type
92 my $userinfo=IkiWiki::userinfo_retrieve();
93 if (! length $user || ! defined $userinfo ||
94 ! exists $userinfo->{$user} || ! ref $userinfo->{$user}) {
95 IkiWiki::userinfo_setall($user, {
105 sub formbuilder_setup (@) { #{{{
108 my $form=$params{form};
109 my $session=$params{session};
110 my $cgi=$params{cgi};
112 # if not under SSL, die before even showing a login form,
113 # unless the admin explicitly says it's fine
114 if (! exists $config{unixauth_requiressl}) {
115 $config{unixauth_requiressl} = 1;
117 if ($config{unixauth_requiressl}) {
118 if ((! $config{sslcookie}) || (! exists $ENV{'HTTPS'})) {
119 die("SSL required to login. Contact your administrator.<br>");
123 if ($form->title eq "signin") {
124 $form->field(name => "name", required => 0);
125 $form->field(name => "password", type => "password", required => 0);
127 if ($form->submitted) {
128 my $submittype=$form->submitted;
129 # Set required fields based on how form was submitted.
131 "Login" => [qw(name password)],
133 foreach my $opt (@{$required{$submittype}}) {
134 $form->field(name => $opt, required => 1);
137 # Validate password against name for Login.
138 if ($submittype eq "Login") {
142 checkpassword($form->field("name"), shift);
147 # XXX is this reachable? looks like no
148 elsif ($submittype eq "Login") {
154 IkiWiki::userinfo_get($name, "regdate");
160 # First time settings.
161 $form->field(name => "name");
162 if ($session->param("name")) {
163 $form->field(name => "name", value => $session->param("name"));
167 elsif ($form->title eq "preferences") {
168 $form->field(name => "name", disabled => 1,
169 value => $session->param("name"), force => 1,
170 fieldset => "login");
171 $form->field(name => "password", disabled => 1, type => "password",
172 fieldset => "login"),
176 sub formbuilder (@) { #{{{
179 my $form=$params{form};
180 my $session=$params{session};
181 my $cgi=$params{cgi};
182 my $buttons=$params{buttons};
184 if ($form->title eq "signin") {
185 if ($form->submitted && $form->validate) {
186 if ($form->submitted eq 'Login') {
187 $session->param("name", $form->field("name"));
188 IkiWiki::cgi_postsignin($cgi, $session);
192 elsif ($form->title eq "preferences") {
193 if ($form->submitted eq "Save Preferences" && $form->validate) {
194 my $user_name=$form->field('name');
199 sub sessioncgi ($$) { #{{{