This file is indexed.

/usr/include/Wt/Auth/Dbo/UserDatabase is in libwt-dev 3.3.0-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
// This may look like C code, but it's really -*- C++ -*-
/*
 * Copyright (C) 2011 Emweb bvba, Kessel-Lo, Belgium.
 *
 * See the LICENSE file for terms of use.
 */
#ifndef WT_AUTH_DBO_USER_DATABASE_H_
#define WT_AUTH_DBO_USER_DATABASE_H_

#include <Wt/Auth/AbstractUserDatabase>
#include <Wt/Auth/Dbo/AuthInfo>
#include <Wt/WLogger>

namespace Wt {
  namespace Auth {
    namespace Dbo {

/*! \class UserDatabase Wt/Auth/Dbo/UserDatabase
 *  \brief A default implementation for a authentication data in %Wt::%Dbo.
 * 
 * This is a template class, and needs as parameter the Dbo type which
 * models holds the authentication information. A suitable
 * implementation, which stores authentication information outside the
 * "user" class, is provided by AuthInfo.
 *
 * \sa UserDatabase
 *
 * \ingroup auth
 */
template <class DboType>
class WT_API UserDatabase : public AbstractUserDatabase
{
  typedef typename DboType::AuthTokenType AuthTokenType;
  typedef Wt::Dbo::collection< Wt::Dbo::ptr<AuthTokenType> > AuthTokens;

  typedef typename DboType::AuthIdentityType AuthIdentityType;
  typedef Wt::Dbo::collection< Wt::Dbo::ptr<AuthIdentityType> > AuthIdentities;

public:
  /*! \brief Constructor
   */
  UserDatabase(Wt::Dbo::Session& session)
    : session_(session),
      maxAuthTokensPerUser_(50)
  { }

  virtual Transaction *startTransaction() {
    return new TransactionImpl(session_);
  }

  /*! \brief Returns the %Dbo user type corresponding to an Auth::User.
   */
  Wt::Dbo::ptr<DboType> find(const User& user) const {
    getUser(user.id());
    return user_;
  }

  /*! \brief Returns the Auth::User corresponding to a %Dbo user.
   */
  User find(const Wt::Dbo::ptr<DboType> user) const {
    setUser(user);
    return User(boost::lexical_cast<std::string>(user_->id()), *this);
  }

  virtual User findWithId(const std::string& id) const {
    getUser(id);

    if (user_)
      return User(id, *this);
    else
      return User();
  }

  virtual User findWithIdentity(const std::string& provider,
				const WString& identity) const {
    if (userProvider_ != provider || userIdentity_ != identity) {
      Wt::Dbo::Transaction t(session_);
      setUser(session_.query< Wt::Dbo::ptr<DboType> >
	      (std::string() +
	       "select u from \"" + session_.tableName<DboType>() + "\" u "
	       "join \"" + session_.tableName<AuthIdentityType>() + "\" i "
	       "on u.id = i." + session_.tableName<DboType>() + "_id")
	      .where("i.provider = ?").bind(provider)
	      .where("i.identity = ?").bind(identity));
      t.commit();
    }

    if (user_) {
      userProvider_ = provider;
      userIdentity_ = identity;
      return User(boost::lexical_cast<std::string>(user_.id()), *this);
    } else
      return User();
  }

  virtual WString identity(const User& user,
			   const std::string& provider) const {
    WithUser find(*this, user);

    AuthIdentities c
      = user_->authIdentities().find().where("provider = ?").bind(provider);

    typename AuthIdentities::const_iterator i = c.begin();

    if (i != c.end())
      return (*i)->identity();
    else
      return WString::Empty;
  }

  virtual void removeIdentity(const User& user,
			      const std::string& provider) {
    Wt::Dbo::Transaction t(session_);

    session_.execute
      (std::string() +
       "delete from \"" + session_.tableName<AuthIdentityType>() +
       "\" where " + session_.tableName<DboType>() + "_id = ?"
       " and provider = ?").bind(user.id()).bind(provider);

    t.commit();
  }

  virtual User registerNew() {
    DboType *user = new DboType();
    setUser(session_.add(user));
    user_.flush();
    return User(boost::lexical_cast<std::string>(user_.id()), *this);
  }

  virtual void deleteUser(const User& user) {
    Wt::Dbo::Transaction t(session_);
    Wt::Dbo::ptr<DboType> u = find(user);
    u.remove();
    t.commit();
  }

  virtual User::Status status(const User& user) const {
    WithUser find(*this, user);
    return user_->status();
  }

  virtual void setPassword(const User& user, const PasswordHash& password) {
    WithUser find(*this, user);
    user_.modify()->setPassword(password.value(),
				password.function(),
				password.salt());
  }

  virtual PasswordHash password(const User& user) const {
    WithUser find(*this, user);
    return PasswordHash(user_->passwordMethod(), user_->passwordSalt(),
			user_->passwordHash());
  }

  virtual void addIdentity(const User& user, const std::string& provider,
			   const WT_USTRING& identity) {
    WithUser find(*this, user);

    if (session_.find<AuthIdentityType>()
	.where("identity = ?").bind(identity)
	.where("provider = ?").bind(provider).resultList().size() != 0) {
      Wt::log("error") << "cannot add identity " << provider
		       << ":'" << identity << "': already exists";
    }

    /*
     * It's okay to have more than one identity from that provider
     */
    user_.modify()->authIdentities().insert
      (Wt::Dbo::ptr<AuthIdentityType>(new AuthIdentityType(provider,
							   identity)));
  }

  virtual bool setEmail(const User& user, const std::string& address) {
    WithUser find(*this, user);

    if (session_.find<DboType>().where("email = ?")
	.bind(address).resultList().size() != 0)
      return false;

    user_.modify()->setEmail(address);

    return true;
  }

  virtual std::string email(const User& user) const {
    WithUser find(*this, user);
    return user_->email();
  }

  virtual void setUnverifiedEmail(const User& user,
				  const std::string& address) {
    WithUser find(*this, user);
    user_.modify()->setUnverifiedEmail(address);
  }

  virtual std::string unverifiedEmail(const User& user) const {
    WithUser find(*this, user);
    return user_->unverifiedEmail();
  }

  virtual User findWithEmail(const std::string& address) const {
    Wt::Dbo::Transaction t(session_);
    setUser(session_.find<DboType>().where("email = ?").bind(address));
    t.commit();

    if (user_)
      return User(boost::lexical_cast<std::string>(user_.id()), *this);
    else
      return User();
  }

  virtual void setEmailToken(const User& user, const Token& token,
			     User::EmailTokenRole role) {
    WithUser find(*this, user);
    user_.modify()->setEmailToken(token.hash(), token.expirationTime(), role);
  }

  virtual Token emailToken(const User& user) const {
    WithUser find(*this, user);
    return Token(user_->emailToken(), user_->emailTokenExpires());
  }

  virtual User::EmailTokenRole emailTokenRole(const User& user) const {
    WithUser find(*this, user);
    return user_->emailTokenRole();
  }

  virtual User findWithEmailToken(const std::string& hash) const {
    Wt::Dbo::Transaction t(session_);
    setUser(session_.find<DboType>()
	    .where("email_token = ?").bind(hash));
    t.commit();

    if (user_)
      return User(boost::lexical_cast<std::string>(user_.id()), *this);
    else
      return User();
  }
 
  virtual void addAuthToken(const User& user, const Token& token) {
    WithUser find(*this, user);

    /*
     * This should be statistically very unlikely but also a big
     * security problem if we do not detect it ...
     */
    if (session_.find<AuthTokenType>().where("value = ?")
	.bind(token.hash())
	.resultList().size() > 0)
      throw std::runtime_error("Token hash collision");

    /*
     * Prevent a user from piling up the database with tokens
     */
    if (user_->authTokens().size() > maxAuthTokensPerUser_)
      return;

    user_.modify()->authTokens().insert
      (Wt::Dbo::ptr<AuthTokenType>
       (new AuthTokenType(token.hash(), token.expirationTime())));
  }

  virtual void removeAuthToken(const User& user, const std::string& hash) {
    WithUser find(*this, user);

    for (typename AuthTokens::const_iterator i = user_->authTokens().begin();
	 i != user_->authTokens().end(); ++i) {
      Wt::Dbo::ptr<AuthTokenType> t = *i;
      if (t->value() == hash) {
	t.remove();
	break;
      }
    }
  }

  virtual User findWithAuthToken(const std::string& hash) const {
    Wt::Dbo::Transaction t(session_);
    setUser(session_.query< Wt::Dbo::ptr<DboType> >
	    (std::string() +
	     "select u from \"" + session_.tableName<DboType>() + "\" u "
	     "join \"" + session_.tableName<AuthTokenType>() + "\" t "
	     "on u.id = t." + session_.tableName<DboType>() + "_id")
	    .where("t.value = ?").bind(hash)
	    .where("t.expires > ?").bind(WDateTime::currentDateTime()));
    t.commit();

    if (user_)
      return User(boost::lexical_cast<std::string>(user_.id()), *this);
    else
      return User();
  }

  virtual void setFailedLoginAttempts(const User& user, int count) {
    WithUser find(*this, user);
    return user_.modify()->setFailedLoginAttempts(count);
  }

  virtual int failedLoginAttempts(const User& user) const {
    WithUser find(*this, user);
    return user_->failedLoginAttempts();    
  }

  virtual void setLastLoginAttempt(const User& user, const WDateTime& t) {
    WithUser find(*this, user);
    return user_.modify()->setLastLoginAttempt(t);
  }

  virtual WDateTime lastLoginAttempt(const User& user) const {
    WithUser find(*this, user);
    return user_->lastLoginAttempt();    
  }

private:
  Wt::Dbo::Session& session_;
  mutable Wt::Dbo::ptr<DboType> user_;
  mutable std::string userProvider_;
  mutable Wt::WString userIdentity_;
  unsigned maxAuthTokensPerUser_;

  struct WithUser {
    WithUser(const UserDatabase<DboType>& self, const User& user)
      : transaction(self.session_)
    {
      self.getUser(user.id());
      if (!self.user_)
	throw WException("Invalid user");
    }
    
    ~WithUser() {
      transaction.commit();
    }

    Wt::Dbo::Transaction transaction;
  };

  void getUser(const std::string& id) const {
    if (!user_ || boost::lexical_cast<std::string>(user_.id()) != id) {
      Wt::Dbo::Transaction t(session_);
      setUser(session_.load<DboType>(boost::lexical_cast<long long>(id)));
      t.commit();
    }
  }

  void setUser(Wt::Dbo::ptr<DboType> user) const {
    user_ = user;
    userProvider_.clear();
    userIdentity_ = WString::Empty;
  }

  struct TransactionImpl : public Transaction, public Wt::Dbo::Transaction
  {
    TransactionImpl(Wt::Dbo::Session& session)
      : Wt::Dbo::Transaction(session)
    { }

    virtual ~TransactionImpl()
    { }

    virtual void commit()
    {
      Wt::Dbo::Transaction::commit();
    }

    virtual void rollback()
    {
      Wt::Dbo::Transaction::rollback();
    }
  };
};

};

  }
}

#endif // WT_AUTH_DBO_USER_DATABASE