aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/nodeagent/UserNamespace.java
blob: 005452411bd290127a052d37341cd8cdae0dc6ef (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.nodeagent;

/**
 * @author valerijf
 */
public class UserNamespace {

    /** Total number of UID/GID that are mapped for each container */
    private static final int ID_RANGE = 65_536; // 2^16

    /**
     * IDs outside the ID range are translated to the overflow ID before being written to disk:
     * https://github.com/torvalds/linux/blob/5bfc75d92efd494db37f5c4c173d3639d4772966/Documentation/admin-guide/sysctl/fs.rst#overflowgid--overflowuid */
    private static final int OVERFLOW_ID = 65_534;

    private volatile int uidOffset;
    private volatile int gidOffset;

    public UserNamespace(int uidOffset, int gidOffset) {
        this.uidOffset = uidOffset;
        this.gidOffset = gidOffset;
    }

    public int userIdOnHost(int containerUid) { return toHostId(containerUid, uidOffset); }
    public int groupIdOnHost(int containerGid) { return toHostId(containerGid, gidOffset); }
    public int userIdInContainer(int hostUid) { return toContainerId(hostUid, uidOffset); }
    public int groupIdInContainer(int hostGid) { return toContainerId(hostGid, gidOffset); }

    public int idRange() { return ID_RANGE; }
    public int overflowId() { return OVERFLOW_ID; }

    // Remove after migration to mapped namespaces is complete, make fields final
    public void setOffsets(int idOffset) {
        this.uidOffset = idOffset;
        this.gidOffset = idOffset;
    }

    private static int toHostId(int containerId, int idOffset) {
        if (containerId < 0 || containerId > ID_RANGE)
            throw new IllegalArgumentException("Invalid container id: " + containerId);
        return idOffset + containerId;
    }

    private static int toContainerId(int hostId, int idOffset) {
        hostId = hostId - idOffset;
        return hostId < 0 || hostId >= ID_RANGE ? OVERFLOW_ID : hostId;
    }
}