summaryrefslogtreecommitdiff
path: root/FS/FS/Password_Mixin.pm
blob: b29cf571365fdae310c4e59d85816752c939185b (plain)
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
package FS::Password_Mixin;

use FS::Record qw(qsearch);
use FS::Conf;
use FS::password_history;
use Authen::Passphrase;
use Authen::Passphrase::BlowfishCrypt;
# https://rt.cpan.org/Ticket/Display.html?id=72743
use Data::Password qw(:all);

our $DEBUG = 0;
our $conf;
FS::UID->install_callback( sub {
  $conf = FS::Conf->new;
});

our $me = '[' . __PACKAGE__ . ']';

our $BLOWFISH_COST = 10;

=head1 NAME

FS::Password_Mixin - Object methods for accounts that have passwords governed
by the password policy.

=head1 METHODS

=over 4

=item is_password_allowed PASSWORD

Checks the password against the system password policy. Returns an error
message on failure, an empty string on success.

This MUST NOT be called from check(). It should be called by the office UI,
self-service ClientAPI, or other I<user-interactive> code that processes a
password change, and only if the user has taken some action with the intent
of setting the password.

=cut

sub is_password_allowed {
  my $self = shift;
  my $password = shift;

  # basic checks using Data::Password;
  # options for Data::Password
  $DICTIONARY = 0;   # minimum length of disallowed words, false value disables dictionary checking
  $MINLEN = $conf->config('passwordmin') || 8;
  $MAXLEN = $conf->config('passwordmax') || 12;
  $GROUPS = 4;       # must have all 4 'character groups': numbers, symbols, uppercase, lowercase
  # other options use the defaults listed below:
  # $FOLLOWING = 3;    # disallows more than 3 chars in a row, by alphabet or keyboard (ie abcd or asdf)
  # $SKIPCHAR = undef; # set to true to skip checking for bad characters
  # # lists of disallowed words
  # @DICTIONARIES = qw( /usr/share/dict/web2 /usr/share/dict/words /usr/share/dict/linux.words );

  # first, no dictionary checking but require 4 char groups
  my $error = IsBadPassword($password);

  # but they can get away with 3 char groups, so long as they're not using a word
  if ($error eq 'contains less than 4 character groups') {
    $DICTIONARY = 4; # default from Data::Password is 5
    $GROUPS = 3;
    $error = IsBadPassword($password);
    # take note--we never actually report dictionary word errors;
    # 4 char groups is the rule, 3 char groups and no dictionary words is an acceptable exception
    $error = 'should contain at least one each of numbers, symbols, lowercase and uppercase letters'
      if $error;
  }

  # maybe also at some point add an exception for any passwords of sufficient length,
  # see https://xkcd.com/936/

  $error = 'Invalid password - ' . $error if $error;
  return $error if $error;

  #check against service fields
  $error = $self->password_svc_check($password);
  return $error if $error;

  return '' unless $self->get($self->primary_key); # for validating new passwords pre-insert

  #check against customer fields
  my $cust_main = $self->table eq 'access_user'
                    ? $self->user_cust_main
                    : $self->cust_main;
  if ($cust_main) {
    my @words;
    # words from cust_main
    foreach my $field ( qw( last first daytime night fax mobile ) ) {
        push @words, split(/\W/,$cust_main->get($field));
    }
    # words from cust_location
    foreach my $loc ($cust_main->cust_location) {
      foreach my $field ( qw(address1 address2 city county state zip) ) {
        push @words, split(/\W/,$loc->get($field));
      }
    }
    # words from cust_contact & contact_phone
    foreach my $contact (map { $_->contact } $cust_main->cust_contact) {
      foreach my $field ( qw(last first) ) {
        push @words, split(/\W/,$contact->get($field));
      }
      # not hugely useful right now, hyphenless stored values longer than password max,
      # but max will probably be increased eventually...
      foreach my $phone ( qsearch('contact_phone', {'contactnum' => $contact->contactnum}) ) {
        push @words, split(/\W/,$phone->get('phonenum'));
      }
    }
    # do the actual checking
    foreach my $word (@words) {
      next unless length($word) > 2;
      if ($password =~ /$word/i) {
        return qq(Password contains account information '$word');
      }
    }
  }

  my $no_reuse = 3;
  # allow override here if we really must

  if ( $no_reuse > 0 ) {

    # "the last N" passwords includes the current password and the N-1
    # passwords before that.
    warn "$me checking password reuse limit of $no_reuse\n" if $DEBUG;
    my @latest = qsearch({
        'table'     => 'password_history',
        'hashref'   => { $self->password_history_key => $self->get($self->primary_key) },
        'order_by'  => " ORDER BY created DESC LIMIT $no_reuse",
    });

    # don't check the first one; reusing the current password is allowed.
    shift @latest;

    foreach my $history (@latest) {
      warn "$me previous password created ".$history->created."\n" if $DEBUG;
      if ( $history->password_equals($password) ) {
        my $message;
        if ( $no_reuse == 1 ) {
          $message = "This password is the same as your previous password.";
        } else {
          $message = "This password was one of the last $no_reuse passwords on this account.";
        }
        return $message;
      }
    } #foreach $history

  } # end of no_reuse checking

  '';
}

=item password_svc_check

Override to run additional service-specific password checks.

=cut

sub password_svc_check {
  my ($self, $password) = @_;
  return '';
}

=item password_history_key

Returns the name of the field in L<FS::password_history> that's the foreign
key to this table.

=cut

sub password_history_key {
  my $self = shift;
  $self->table . '__' . $self->primary_key;
}

=item insert_password_history

Creates a L<FS::password_history> record linked to this object, with its
current password.

=cut

sub insert_password_history {
  my $self = shift;
  my $encoding = $self->_password_encoding;
  my $password = $self->_password;
  my $auth;

  if ( $encoding eq 'bcrypt' ) {
    # our format, used for contact and access_user passwords
    my ($cost, $salt, $hash) = split(',', $password);
    $auth = Authen::Passphrase::BlowfishCrypt->new(
      cost        => $cost,
      salt_base64 => $salt,
      hash_base64 => $hash,
    );

  } elsif ( $encoding eq 'crypt' ) {

    # it's smart enough to figure this out
    $auth = Authen::Passphrase->from_crypt($password);

  } elsif ( $encoding eq 'ldap' ) {

    $password =~ s/^{PLAIN}/{CLEARTEXT}/i; # normalize
    $auth = Authen::Passphrase->from_rfc2307($password);
    if ( $auth->isa('Authen::Passphrase::Clear') ) {
      # then we've been given the password in cleartext
      $auth = $self->_blowfishcrypt( $auth->passphrase );
    }
  
  } else {
    warn "unrecognized password encoding '$encoding'; treating as plain text"
      unless $encoding eq 'plain';

    $auth = $self->_blowfishcrypt( $password );

  }

  my $password_history = FS::password_history->new({
      _password => $auth->as_rfc2307,
      created   => time,
      $self->password_history_key => $self->get($self->primary_key),
  });

  my $error = $password_history->insert;
  return "recording password history: $error" if $error;
  '';

}

=item delete_password_history;

Removes all password history records attached to this object, in preparation
to delete the object.

=cut

sub delete_password_history {
  my $self = shift;
  my @records = qsearch('password_history', {
      $self->password_history_key => $self->get($self->primary_key)
  });
  my $error = '';
  foreach (@records) {
    $error ||= $_->delete;
  }
  return $error . ' (clearing password history)' if $error;
  '';
}

=item _blowfishcrypt PASSWORD

For internal use: takes PASSWORD and returns a new
L<Authen::Passphrase::BlowfishCrypt> object representing it.

=cut

sub _blowfishcrypt {
  my $class = shift;
  my $passphrase = shift;
  return Authen::Passphrase::BlowfishCrypt->new(
    cost => $BLOWFISH_COST,
    salt_random => 1,
    passphrase => $passphrase,
  );
}

=back

=head1 CLASS METHODS

=over 4

=item pw_set

Returns the list of characters allowed in random passwords. This is now
hardcoded.

=cut

sub pw_set {

  # ASCII alphabet, minus easily confused stuff (l, o, O, 0, 1)
  # and plus some "safe" punctuation
  split('',
    'abcdefghijkmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ23456789#.,[]-_=+'
  );

}

=back

=head1 SEE ALSO

L<FS::password_history>

=cut

1;