Searched refs:uid_map (Results 1 – 7 of 7) sorted by relevance
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/ |
H A D | 0012-do-not-disable-buffer-in-writing-files.patch | 107 @@ -227,12 +227,12 @@ int userns_acquire(const char *uid_map, 110 xsprintf(path, "/proc/" PID_FMT "/uid_map", pid); 111 - r = write_string_file(path, uid_map, WRITE_STRING_FILE_DISABLE_BUFFER); 112 + r = write_string_file(path, uid_map, 0); 273 xsprintf(uid_map, "/proc/" PID_FMT "/uid_map", pid); 274 - r = write_string_file(uid_map, s, WRITE_STRING_FILE_DISABLE_BUFFER); 275 + r = write_string_file(uid_map, s, 0); 282 xsprintf(uid_map, "/proc/" PID_FMT "/gid_map", pid); 283 - r = write_string_file(uid_map, s, WRITE_STRING_FILE_DISABLE_BUFFER); 284 + r = write_string_file(uid_map, s, 0);
|
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/ |
H A D | 0012-do-not-disable-buffer-in-writing-files.patch | 74 @@ -354,12 +354,12 @@ int userns_acquire(const char *uid_map, const char *gid_map) { 77 xsprintf(path, "/proc/" PID_FMT "/uid_map", pid); 78 - r = write_string_file(path, uid_map, WRITE_STRING_FILE_DISABLE_BUFFER); 79 + r = write_string_file(path, uid_map, 0); 272 xsprintf(uid_map, "/proc/" PID_FMT "/uid_map", pid); 273 - r = write_string_file(uid_map, s, WRITE_STRING_FILE_DISABLE_BUFFER); 274 + r = write_string_file(uid_map, s, 0); 281 xsprintf(uid_map, "/proc/" PID_FMT "/gid_map", pid); 282 - r = write_string_file(uid_map, s, WRITE_STRING_FILE_DISABLE_BUFFER); 283 + r = write_string_file(uid_map, s, 0);
|
/openbmc/linux/tools/testing/selftests/mount/ |
H A D | run_unprivileged_remount.sh | 7 if [ -f /proc/self/uid_map ] ; then
|
/openbmc/linux/kernel/ |
H A D | user_namespace.c | 208 if (ns->uid_map.nr_extents > UID_GID_MAP_MAX_BASE_EXTENTS) { in free_user_ns() 209 kfree(ns->uid_map.forward); in free_user_ns() 210 kfree(ns->uid_map.reverse); in free_user_ns() 411 return KUIDT_INIT(map_id_down(&ns->uid_map, uid)); in make_kuid() 430 return map_id_up(&targ->uid_map, __kuid_val(kuid)); in from_kuid() 682 return m_start(seq, ppos, &ns->uid_map); in uid_m_start() 1122 &ns->uid_map, &ns->parent->uid_map); in proc_uid_map_write()
|
H A D | user.c | 28 .uid_map = {
|
/openbmc/linux/include/linux/ |
H A D | user_namespace.h | 69 struct uid_gid_map uid_map; member
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | sanity.bbclass | 484 # succeeds (at which point the uid is nobody) but writing to the uid_map
|