summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/role_graph.cpp
blob: 98ea177cc433068f79bceefc4eb19558f4234b85 (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
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
/**
 *    Copyright (C) 2013 10gen Inc.
 *
 *    This program is free software: you can redistribute it and/or  modify
 *    it under the terms of the GNU Affero General Public License, version 3,
 *    as published by the Free Software Foundation.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU Affero General Public License for more details.
 *
 *    You should have received a copy of the GNU Affero General Public License
 *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *    As a special exception, the copyright holders give permission to link the
 *    code of portions of this program with the OpenSSL library under certain
 *    conditions as described in each individual source file and distribute
 *    linked combinations including the program with the OpenSSL library. You
 *    must comply with the GNU Affero General Public License in all respects for
 *    all of the code used other than as permitted herein. If you modify file(s)
 *    with this exception, you may extend this exception to your version of the
 *    file(s), but you are not obligated to do so. If you do not wish to do so,
 *    delete this exception statement from your version. If you delete this
 *    exception statement from all source files in the program, then also delete
 *    it in the license file.
 */

#include "mongo/db/auth/role_graph.h"

#include <algorithm>
#include <set>
#include <vector>

#include "mongo/db/auth/privilege.h"
#include "mongo/db/auth/role_name.h"
#include "mongo/platform/unordered_set.h"
#include "mongo/util/mongoutils/str.h"

namespace mongo {

namespace {
    PrivilegeVector emptyPrivilegeVector;
} // namespace

    RoleGraph::RoleGraph() {};
    RoleGraph::RoleGraph(const RoleGraph& other) : _roleToSubordinates(other._roleToSubordinates),
            _roleToIndirectSubordinates(other._roleToIndirectSubordinates),
            _roleToMembers(other._roleToMembers),
            _directPrivilegesForRole(other._directPrivilegesForRole),
            _allPrivilegesForRole(other._allPrivilegesForRole),
            _allRoles(other._allRoles) {}
    RoleGraph::~RoleGraph() {};

    void RoleGraph::swap(RoleGraph& other) {
        using std::swap;
        swap(this->_roleToSubordinates, other._roleToSubordinates);
        swap(this->_roleToIndirectSubordinates, other._roleToIndirectSubordinates);
        swap(this->_roleToMembers, other._roleToMembers);
        swap(this->_directPrivilegesForRole, other._directPrivilegesForRole);
        swap(this->_allPrivilegesForRole, other._allPrivilegesForRole);
        swap(this->_allRoles, other._allRoles);
    }

    void swap(RoleGraph& lhs, RoleGraph& rhs) {
        lhs.swap(rhs);
    }

    bool RoleGraph::roleExists(const RoleName& role) {
        _createBuiltinRoleIfNeeded(role);
        return _roleExistsDontCreateBuiltin(role);
    }

    bool RoleGraph::_roleExistsDontCreateBuiltin(const RoleName& role) {
        EdgeSet::const_iterator edgeIt = _roleToSubordinates.find(role);
        if (edgeIt == _roleToSubordinates.end())
            return false;
        edgeIt = _roleToMembers.find(role);
        fassert(16825, edgeIt != _roleToMembers.end());

        RolePrivilegeMap::const_iterator strIt = _directPrivilegesForRole.find(role);
        if (strIt == _directPrivilegesForRole.end())
            return false;
        strIt = _allPrivilegesForRole.find(role);
        fassert(16826, strIt != _allPrivilegesForRole.end());
        return true;
    }

    Status RoleGraph::createRole(const RoleName& role) {
        if (roleExists(role)) {
            return Status(ErrorCodes::DuplicateKey,
                          mongoutils::str::stream() << "Role: " << role.getFullName() <<
                                " already exists",
                          0);
        }

        _createRoleDontCheckIfRoleExists(role);
        return Status::OK();
    }

    void RoleGraph::_createRoleDontCheckIfRoleExists(const RoleName& role) {
        // Just reference the role in all the maps so that an entry gets created with empty
        // containers for the value.
        _roleToSubordinates[role];
        _roleToIndirectSubordinates[role];
        _roleToMembers[role];
        _directPrivilegesForRole[role];
        _allPrivilegesForRole[role];
        _allRoles.insert(role);
    }

    Status RoleGraph::deleteRole(const RoleName& role) {
        if (!roleExists(role)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << role.getFullName() <<
                                  " does not exist",
                          0);
        }
        if (isBuiltinRole(role)) {
            return Status(ErrorCodes::InvalidRoleModification,
                          mongoutils::str::stream() << "Cannot delete built-in role: " <<
                                  role.getFullName(),
                          0);
        }

        for (std::vector<RoleName>::iterator it = _roleToSubordinates[role].begin();
                it != _roleToSubordinates[role].end(); ++it) {
            _roleToMembers[*it].erase(std::find(_roleToMembers[*it].begin(),
                                                _roleToMembers[*it].end(),
                                                role));
        }
        for (std::vector<RoleName>::iterator it = _roleToMembers[role].begin();
                it != _roleToMembers[role].end(); ++it) {
            _roleToSubordinates[*it].erase(std::find(_roleToSubordinates[*it].begin(),
                                                     _roleToSubordinates[*it].end(),
                                                     role));
        }
        _roleToSubordinates.erase(role);
        _roleToIndirectSubordinates.erase(role);
        _roleToMembers.erase(role);
        _directPrivilegesForRole.erase(role);
        _allPrivilegesForRole.erase(role);
        _allRoles.erase(role);
        return Status::OK();
    }

    RoleNameIterator RoleGraph::getDirectSubordinates(const RoleName& role) {
        if (!roleExists(role))
            return RoleNameIterator(NULL);
        return makeRoleNameIteratorForContainer(_roleToSubordinates[role]);
    }

    RoleNameIterator RoleGraph::getIndirectSubordinates(const RoleName& role) {
        if (!roleExists(role))
            return RoleNameIterator(NULL);
        return makeRoleNameIteratorForContainer(_roleToIndirectSubordinates[role]);
    }

    RoleNameIterator RoleGraph::getDirectMembers(const RoleName& role) {
        if (!roleExists(role))
            return RoleNameIterator(NULL);
        return makeRoleNameIteratorForContainer(_roleToMembers[role]);
    }

    const PrivilegeVector& RoleGraph::getDirectPrivileges(const RoleName& role) {
        if (!roleExists(role))
            return emptyPrivilegeVector;
        return _directPrivilegesForRole.find(role)->second;
    }

    const PrivilegeVector& RoleGraph::getAllPrivileges(const RoleName& role) {
        if (!roleExists(role))
            return emptyPrivilegeVector;
        return _allPrivilegesForRole.find(role)->second;
    }

    Status RoleGraph::addRoleToRole(const RoleName& recipient, const RoleName& role) {
        if (!roleExists(recipient)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << recipient.getFullName() <<
                                " does not exist");
        }
        if (isBuiltinRole(recipient)) {
            return Status(ErrorCodes::InvalidRoleModification,
                          mongoutils::str::stream() << "Cannot grant roles to built-in role: " <<
                                  role.getFullName());
        }
        if (!roleExists(role)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << role.getFullName() <<
                                " does not exist");
        }

        if (std::find(_roleToSubordinates[recipient].begin(),
                      _roleToSubordinates[recipient].end(),
                      role) ==
                _roleToSubordinates[recipient].end()) {
            // Only add role if it's not already present
            _roleToSubordinates[recipient].push_back(role);
            _roleToMembers[role].push_back(recipient);
        }

        return Status::OK();
    }

    Status RoleGraph::removeRoleFromRole(const RoleName& recipient, const RoleName& role) {
        if (!roleExists(recipient)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << recipient.getFullName() <<
                                " does not exist",
                          0);
        }
        if (isBuiltinRole(recipient)) {
            return Status(ErrorCodes::InvalidRoleModification,
                          mongoutils::str::stream() << "Cannot remove roles from built-in role: " <<
                                  role.getFullName(),
                          0);
        }
        if (!roleExists(role)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << role.getFullName() <<
                                " does not exist",
                          0);
        }

        std::vector<RoleName>::iterator itToRm = std::find(_roleToMembers[role].begin(),
                                                           _roleToMembers[role].end(),
                                                           recipient);
        if (itToRm != _roleToMembers[role].end()) {
            _roleToMembers[role].erase(itToRm);
        } else {
            return Status(ErrorCodes::RolesNotRelated,
                          mongoutils::str::stream() << recipient.getFullName() << " is not a member"
                                  " of " << role.getFullName(),
                          0);
        }

        itToRm = std::find(_roleToSubordinates[recipient].begin(),
                           _roleToSubordinates[recipient].end(),
                           role);
        fassert(16827, itToRm != _roleToSubordinates[recipient].end());
        _roleToSubordinates[recipient].erase(itToRm);
        return Status::OK();
    }

    Status RoleGraph::removeAllRolesFromRole(const RoleName& victim) {
        typedef std::vector<RoleName> RoleNameVector;
        if (!roleExists(victim)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << victim.getFullName() <<
                          " does not exist",
                          0);
        }
        if (isBuiltinRole(victim)) {
            return Status(ErrorCodes::InvalidRoleModification,
                          mongoutils::str::stream() << "Cannot remove roles from built-in role: " <<
                          victim.getFullName(),
                          0);
        }

        RoleNameVector& subordinatesOfVictim = _roleToSubordinates[victim];
        for (RoleNameVector::const_iterator subordinateRole = subordinatesOfVictim.begin(),
                 end = subordinatesOfVictim.end();
             subordinateRole != end;
             ++subordinateRole) {

            RoleNameVector& membersOfSubordinate = _roleToMembers[*subordinateRole];
            RoleNameVector::iterator toErase = std::find(
                    membersOfSubordinate.begin(), membersOfSubordinate.end(), victim);
            fassert(17173, toErase != membersOfSubordinate.end());
            membersOfSubordinate.erase(toErase);
        }
        subordinatesOfVictim.clear();
        return Status::OK();
    }

    Status RoleGraph::addPrivilegeToRole(const RoleName& role, const Privilege& privilegeToAdd) {
        if (!roleExists(role)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << role.getFullName() <<
                                " does not exist",
                          0);
        }
        if (isBuiltinRole(role)) {
            return Status(ErrorCodes::InvalidRoleModification,
                          mongoutils::str::stream() << "Cannot grant privileges to built-in role: "
                                  << role.getFullName(),
                          0);
        }

        _addPrivilegeToRoleNoChecks(role, privilegeToAdd);
        return Status::OK();
    }

    void RoleGraph::_addPrivilegeToRoleNoChecks(const RoleName& role,
                                                const Privilege& privilegeToAdd) {
        Privilege::addPrivilegeToPrivilegeVector(&_directPrivilegesForRole[role], privilegeToAdd);
    }

    // NOTE: Current runtime of this is O(n*m) where n is the size of the current PrivilegeVector
    // for the given role, and m is the size of the privilegesToAdd vector.
    // If this was a PrivilegeSet (sorted on resource) rather than a PrivilegeVector, we
    // could do this in O(n+m) instead.
    Status RoleGraph::addPrivilegesToRole(const RoleName& role,
                                          const PrivilegeVector& privilegesToAdd) {
        if (!roleExists(role)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << role.getFullName() <<
                                " does not exist",
                          0);
        }
        if (isBuiltinRole(role)) {
            return Status(ErrorCodes::InvalidRoleModification,
                          mongoutils::str::stream() << "Cannot grant privileges to built-in role: "
                                  << role.getFullName(),
                          0);
        }

        for (PrivilegeVector::const_iterator it = privilegesToAdd.begin();
                it != privilegesToAdd.end(); ++it) {
            _addPrivilegeToRoleNoChecks(role, *it);
        }
        return Status::OK();
    }

    Status RoleGraph::removePrivilegeFromRole(const RoleName& role,
                                              const Privilege& privilegeToRemove) {
        if (!roleExists(role)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << role.getFullName() <<
                                " does not exist",
                          0);
        }
        if (isBuiltinRole(role)) {
            return Status(
                    ErrorCodes::InvalidRoleModification,
                    mongoutils::str::stream() << "Cannot remove privileges from built-in role: " <<
                            role.getFullName());
        }

        PrivilegeVector& currentPrivileges = _directPrivilegesForRole[role];
        for (PrivilegeVector::iterator it = currentPrivileges.begin();
                it != currentPrivileges.end(); ++it) {

            Privilege& curPrivilege = *it;
            if (curPrivilege.getResourcePattern() == privilegeToRemove.getResourcePattern()) {
                ActionSet curActions = curPrivilege.getActions();

                if (!curActions.isSupersetOf(privilegeToRemove.getActions())) {
                    // Didn't possess all the actions being removed.
                    return Status(ErrorCodes::PrivilegeNotFound,
                                  mongoutils::str::stream() << "Role: " << role.getFullName() <<
                                          " does not contain a privilege on " <<
                                          privilegeToRemove.getResourcePattern().toString() <<
                                          " with actions: " <<
                                          privilegeToRemove.getActions().toString(),
                                  0);
                }

                curPrivilege.removeActions(privilegeToRemove.getActions());
                if (curPrivilege.getActions().empty()) {
                    currentPrivileges.erase(it);
                }
                return Status::OK();
            }
        }
        return Status(ErrorCodes::PrivilegeNotFound,
                      mongoutils::str::stream() << "Role: " << role.getFullName() << " does not "
                      "contain any privileges on " <<
                      privilegeToRemove.getResourcePattern().toString(),
                      0);
    }

    Status RoleGraph::removePrivilegesFromRole(const RoleName& role,
                                               const PrivilegeVector& privilegesToRemove) {
        for (PrivilegeVector::const_iterator it = privilegesToRemove.begin();
                it != privilegesToRemove.end(); ++it) {
            Status status = removePrivilegeFromRole(role, *it);
            if (!status.isOK()) {
                return status;
            }
        }
        return Status::OK();
    }

    Status RoleGraph::removeAllPrivilegesFromRole(const RoleName& role) {
        if (!roleExists(role)) {
            return Status(ErrorCodes::RoleNotFound,
                          mongoutils::str::stream() << "Role: " << role.getFullName() <<
                                " does not exist",
                          0);
        }
        if (isBuiltinRole(role)) {
            return Status(
                    ErrorCodes::InvalidRoleModification,
                    mongoutils::str::stream() << "Cannot remove privileges from built-in role: " <<
                            role.getFullName());
        }
        _directPrivilegesForRole[role].clear();
        return Status::OK();
    }

    Status RoleGraph::replaceRole(const RoleName& roleName,
                                  const std::vector<RoleName>& roles,
                                  const PrivilegeVector& privileges) {
        Status status = removeAllPrivilegesFromRole(roleName);
        if (status == ErrorCodes::RoleNotFound) {
            fassert(17168, createRole(roleName));
        }
        else if (!status.isOK()) {
            return status;
        }
        fassert(17169, removeAllRolesFromRole(roleName));
        for (size_t i = 0; i < roles.size(); ++i) {
            const RoleName& grantedRole = roles[i];
            status = createRole(grantedRole);
            fassert(17170, status.isOK() || status == ErrorCodes::DuplicateKey);
            fassert(17171, addRoleToRole(roleName, grantedRole));
        }
        fassert(17172, addPrivilegesToRole(roleName, privileges));
        return Status::OK();
    }

    Status RoleGraph::recomputePrivilegeData() {
        /*
         * This method is used to recompute the "allPrivileges" vector for each node in the graph,
         * as well as look for cycles.  It is implemented by performing a depth-first traversal of
         * the dependency graph, once for each node.  "visitedRoles" tracks the set of role names
         * ever visited, and it is used to prune each DFS.  A node that has been visited once on any
         * DFS is never visited again.  Complexity of this implementation is O(n+m) where "n" is the
         * number of nodes and "m" is the number of prerequisite edges.  Space complexity is O(n),
         * in both stack space and size of the "visitedRoles" set.
         *
         * "inProgressRoles" is used to detect and report cycles, as well as to keep track of roles
         * we started visiting before realizing they had children that needed visiting first, so
         * we can get back to them after visiting their children.
         */

        unordered_set<RoleName> visitedRoles;
        for (EdgeSet::const_iterator it = _roleToSubordinates.begin();
                it != _roleToSubordinates.end(); ++it) {
            Status status = _recomputePrivilegeDataHelper(it->first, visitedRoles);
            if (!status.isOK()) {
                return status;
            }
        }
        return Status::OK();
    }

    Status RoleGraph::_recomputePrivilegeDataHelper(const RoleName& startingRole,
                                                    unordered_set<RoleName>& visitedRoles) {
        if (visitedRoles.count(startingRole)) {
            return Status::OK();
        }

        std::vector<RoleName> inProgressRoles;
        inProgressRoles.push_back(startingRole);
        while (inProgressRoles.size()) {
            const RoleName currentRole = inProgressRoles.back();
            fassert(17277, !visitedRoles.count(currentRole));

            if (!roleExists(currentRole)) {
                return Status(ErrorCodes::RoleNotFound,
                              mongoutils::str::stream() << "Role: " << currentRole.getFullName() <<
                                    " does not exist",
                              0);
            }

            // Check for cycles
            {
                const std::vector<RoleName>::const_iterator begin = inProgressRoles.begin();
                // The currentRole will always be last so don't look there.
                const std::vector<RoleName>::const_iterator end = --inProgressRoles.end();
                const std::vector<RoleName>::const_iterator firstOccurence =
                        std::find(begin, end, currentRole);
                if (firstOccurence != end) {
                    std::ostringstream os;
                    os << "Cycle in dependency graph: ";
                    for (std::vector<RoleName>::const_iterator it = firstOccurence;
                            it != end; ++it) {
                        os << it->getFullName() << " -> ";
                    }
                    os << currentRole.getFullName();
                    return Status(ErrorCodes::GraphContainsCycle, os.str());
                }
            }

            // Make sure we've already visited all subordinate roles before worrying about this one.
            const std::vector<RoleName>& currentRoleDirectRoles = _roleToSubordinates[currentRole];
            std::vector<RoleName>::const_iterator roleIt;
            for (roleIt = currentRoleDirectRoles.begin();
                    roleIt != currentRoleDirectRoles.end(); ++roleIt) {
                const RoleName& childRole = *roleIt;
                if (!visitedRoles.count(childRole)) {
                    inProgressRoles.push_back(childRole);
                    break;
                }
            }
            // If roleIt didn't reach the end of currentRoleDirectRoles that means we found a child
            // of currentRole that we haven't visited yet.
            if (roleIt != currentRoleDirectRoles.end()) {
                continue;
            }
            // At this point, we know that we've already visited all child roles of currentRole
            // and thus their "all privileges" sets are correct and can be added to currentRole's
            // "all privileges" set

            // Need to clear out the "all privileges" vector for the current role, and re-fill it
            // with just the direct privileges for this role.
            PrivilegeVector& currentRoleAllPrivileges = _allPrivilegesForRole[currentRole];
            currentRoleAllPrivileges = _directPrivilegesForRole[currentRole];

            // Need to do the same thing for the indirect roles
            unordered_set<RoleName>& currentRoleIndirectRoles =
                    _roleToIndirectSubordinates[currentRole];
            currentRoleIndirectRoles.clear();
            for (std::vector<RoleName>::const_iterator it = currentRoleDirectRoles.begin();
                    it != currentRoleDirectRoles.end(); ++it) {
                currentRoleIndirectRoles.insert(*it);
            }

            // Recursively add children's privileges to current role's "all privileges" vector, and
            // children's roles to current roles's "indirect roles" vector.
            for (std::vector<RoleName>::const_iterator roleIt = currentRoleDirectRoles.begin();
                    roleIt != currentRoleDirectRoles.end(); ++roleIt) {
                // At this point, we already know that the "all privilege" set for the child is
                // correct, so add those privileges to our "all privilege" set.
                const RoleName& childRole = *roleIt;

                const PrivilegeVector& childsPrivileges = _allPrivilegesForRole[childRole];
                for (PrivilegeVector::const_iterator privIt = childsPrivileges.begin();
                        privIt != childsPrivileges.end(); ++privIt) {
                    Privilege::addPrivilegeToPrivilegeVector(&currentRoleAllPrivileges, *privIt);
                }

                // We also know that the "indirect roles" for the child is also correct, so we can
                // add those roles to our "indirect roles" set.
                const unordered_set<RoleName>& childsRoles = _roleToIndirectSubordinates[childRole];
                for (unordered_set<RoleName>::const_iterator childsRoleIt = childsRoles.begin();
                        childsRoleIt != childsRoles.end(); ++childsRoleIt) {
                    currentRoleIndirectRoles.insert(*childsRoleIt);
                }
            }

            visitedRoles.insert(currentRole);
            inProgressRoles.pop_back();
        }
        return Status::OK();
    }

    RoleNameIterator RoleGraph::getRolesForDatabase(const std::string& dbname) {
        _createBuiltinRolesForDBIfNeeded(dbname);

        std::set<RoleName>::const_iterator lower = _allRoles.lower_bound(RoleName("", dbname));
        std::string afterDB = dbname;
        afterDB.push_back('\0');
        std::set<RoleName>::const_iterator upper = _allRoles.lower_bound(RoleName("", afterDB));
        return makeRoleNameIterator(lower, upper);
    }

} // namespace mongo