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 => "getsetup", id => "unixauth", call => \&getsetup);
51 hook(type => "formbuilder_setup", id => "unixauth",
52 call => \&formbuilder_setup);
53 hook(type => "formbuilder", id => "unixauth",
54 call => \&formbuilder);
55 hook(type => "sessioncgi", id => "unixauth", call => \&sessioncgi);
62 example => "checkpassword",
63 description => "type of authenticator; can be 'checkpassword' or 'pwauth'",
69 example => "/path/to/checkpassword",
70 description => "full path and any arguments",
74 unixauth_requiressl => {
77 description => "require SSL? strongly recommended",
82 description => "Unix user authentication",
88 # Checks if a string matches a user's password, and returns true or false.
89 sub checkpassword ($$;$) {
92 my $field=shift || "password";
94 # It's very important that the user not be allowed to log in with
96 if (! length $password) {
101 if (! exists $config{unixauth_type}) {
102 # admin needs to carefully think over his configuration
105 elsif ($config{unixauth_type} eq "checkpassword") {
106 open UNIXAUTH, "|$config{unixauth_command} true 3<&0" or die("Could not run $config{unixauth_type}");
107 print UNIXAUTH "$user\0$password\0Y123456\0";
111 elsif ($config{unixauth_type} eq "pwauth") {
112 open UNIXAUTH, "|$config{unixauth_command}" or die("Could not run $config{unixauth_type}");
113 print UNIXAUTH "$user\n$password\n";
118 # no such authentication type
123 my $userinfo=IkiWiki::userinfo_retrieve();
124 if (! length $user || ! defined $userinfo ||
125 ! exists $userinfo->{$user} || ! ref $userinfo->{$user}) {
126 IkiWiki::userinfo_setall($user, {
136 sub formbuilder_setup (@) {
139 my $form=$params{form};
140 my $session=$params{session};
141 my $cgi=$params{cgi};
143 # if not under SSL, die before even showing a login form,
144 # unless the admin explicitly says it's fine
145 if (! exists $config{unixauth_requiressl}) {
146 $config{unixauth_requiressl} = 1;
148 if ($config{unixauth_requiressl}) {
149 if ((! $config{sslcookie}) || (! exists $ENV{'HTTPS'})) {
150 die("SSL required to login. Contact your administrator.<br>");
154 if ($form->title eq "signin") {
155 $form->field(name => "name", required => 0);
156 $form->field(name => "password", type => "password", required => 0);
158 if ($form->submitted) {
159 my $submittype=$form->submitted;
160 # Set required fields based on how form was submitted.
162 "Login" => [qw(name password)],
164 foreach my $opt (@{$required{$submittype}}) {
165 $form->field(name => $opt, required => 1);
168 # Validate password against name for Login.
169 if ($submittype eq "Login") {
173 checkpassword($form->field("name"), shift);
178 # XXX is this reachable? looks like no
179 elsif ($submittype eq "Login") {
185 IkiWiki::userinfo_get($name, "regdate");
191 # First time settings.
192 $form->field(name => "name");
193 if ($session->param("name")) {
194 $form->field(name => "name", value => $session->param("name"));
198 elsif ($form->title eq "preferences") {
199 $form->field(name => "name", disabled => 1,
200 value => $session->param("name"), force => 1,
201 fieldset => "login");
202 $form->field(name => "password", disabled => 1, type => "password",
203 fieldset => "login"),
207 sub formbuilder (@) {
210 my $form=$params{form};
211 my $session=$params{session};
212 my $cgi=$params{cgi};
213 my $buttons=$params{buttons};
215 if ($form->title eq "signin") {
216 if ($form->submitted && $form->validate) {
217 if ($form->submitted eq 'Login') {
218 $session->param("name", $form->field("name"));
219 IkiWiki::cgi_postsignin($cgi, $session);
223 elsif ($form->title eq "preferences") {
224 if ($form->submitted eq "Save Preferences" && $form->validate) {
225 my $user_name=$form->field('name');
230 sub sessioncgi ($$) {