summaryrefslogtreecommitdiff
path: root/Kernel/Security/Credentials.h
blob: cc6b88052d6f296d47a2b8304df2fa56469a2763 (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
/*
 * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/AtomicRefCounted.h>
#include <AK/FixedArray.h>
#include <Kernel/Forward.h>

namespace Kernel {

class Credentials final : public AtomicRefCounted<Credentials> {
public:
    static ErrorOr<NonnullRefPtr<Credentials>> create(UserID uid, GroupID gid, UserID euid, GroupID egid, UserID suid, GroupID sgid, ReadonlySpan<GroupID> extra_gids, SessionID sid, ProcessGroupID pgid);
    ~Credentials();

    bool is_superuser() const { return euid() == 0; }

    UserID euid() const { return m_euid; }
    GroupID egid() const { return m_egid; }
    UserID uid() const { return m_uid; }
    GroupID gid() const { return m_gid; }
    UserID suid() const { return m_suid; }
    GroupID sgid() const { return m_sgid; }
    ReadonlySpan<GroupID> extra_gids() const { return m_extra_gids.span(); }
    SessionID sid() const { return m_sid; };
    ProcessGroupID pgid() const { return m_pgid; }

    bool in_group(GroupID) const;

private:
    Credentials(UserID uid, GroupID gid, UserID euid, GroupID egid, UserID suid, GroupID sgid, FixedArray<GroupID> extra_gids, SessionID sid, ProcessGroupID pgid);

    UserID m_uid;
    GroupID m_gid;
    UserID m_euid;
    GroupID m_egid;
    UserID m_suid;
    GroupID m_sgid;
    FixedArray<GroupID> m_extra_gids;
    SessionID m_sid;
    ProcessGroupID m_pgid;
};

}