blob: 01d30c0e6190a161e81608443d8ec9b11492efaf [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
Ben Cheng655a7c02013-10-16 16:09:24 -07007#ifndef _UAPINFS_IDMAP_H
8#define _UAPINFS_IDMAP_H
9#include <linux/types.h>
10#define IDMAP_NAMESZ 128
Ben Cheng655a7c02013-10-16 16:09:24 -070011#define IDMAP_TYPE_USER 0
12#define IDMAP_TYPE_GROUP 1
13#define IDMAP_CONV_IDTONAME 0
14#define IDMAP_CONV_NAMETOID 1
Ben Cheng655a7c02013-10-16 16:09:24 -070015#define IDMAP_STATUS_INVALIDMSG 0x01
16#define IDMAP_STATUS_AGAIN 0x02
17#define IDMAP_STATUS_LOOKUPFAIL 0x04
18#define IDMAP_STATUS_SUCCESS 0x08
Ben Cheng655a7c02013-10-16 16:09:24 -070019struct idmap_msg {
Tao Baod7db5942015-01-28 10:07:51 -080020 __u8 im_type;
21 __u8 im_conv;
22 char im_name[IDMAP_NAMESZ];
Tao Baod7db5942015-01-28 10:07:51 -080023 __u32 im_id;
24 __u8 im_status;
Ben Cheng655a7c02013-10-16 16:09:24 -070025};
Nick Kralevicha67e4de2013-01-14 11:28:26 -080026#endif