1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 #ifndef __UNIX_DIAG_H__ 2 #ifndef __UNIX_DIAG_H__ 3 #define __UNIX_DIAG_H__ 3 #define __UNIX_DIAG_H__ 4 4 5 #include <linux/types.h> 5 #include <linux/types.h> 6 6 7 struct unix_diag_req { 7 struct unix_diag_req { 8 __u8 sdiag_family; 8 __u8 sdiag_family; 9 __u8 sdiag_protocol; 9 __u8 sdiag_protocol; 10 __u16 pad; 10 __u16 pad; 11 __u32 udiag_states; 11 __u32 udiag_states; 12 __u32 udiag_ino; 12 __u32 udiag_ino; 13 __u32 udiag_show; 13 __u32 udiag_show; 14 __u32 udiag_cookie[2]; 14 __u32 udiag_cookie[2]; 15 }; 15 }; 16 16 17 #define UDIAG_SHOW_NAME 0x00000001 17 #define UDIAG_SHOW_NAME 0x00000001 /* show name (not path) */ 18 #define UDIAG_SHOW_VFS 0x00000002 18 #define UDIAG_SHOW_VFS 0x00000002 /* show VFS inode info */ 19 #define UDIAG_SHOW_PEER 0x00000004 19 #define UDIAG_SHOW_PEER 0x00000004 /* show peer socket info */ 20 #define UDIAG_SHOW_ICONS 0x00000008 20 #define UDIAG_SHOW_ICONS 0x00000008 /* show pending connections */ 21 #define UDIAG_SHOW_RQLEN 0x00000010 21 #define UDIAG_SHOW_RQLEN 0x00000010 /* show skb receive queue len */ 22 #define UDIAG_SHOW_MEMINFO 0x00000020 22 #define UDIAG_SHOW_MEMINFO 0x00000020 /* show memory info of a socket */ 23 #define UDIAG_SHOW_UID 0x00000040 << 24 23 25 struct unix_diag_msg { 24 struct unix_diag_msg { 26 __u8 udiag_family; 25 __u8 udiag_family; 27 __u8 udiag_type; 26 __u8 udiag_type; 28 __u8 udiag_state; 27 __u8 udiag_state; 29 __u8 pad; 28 __u8 pad; 30 29 31 __u32 udiag_ino; 30 __u32 udiag_ino; 32 __u32 udiag_cookie[2]; 31 __u32 udiag_cookie[2]; 33 }; 32 }; 34 33 35 enum { 34 enum { 36 /* UNIX_DIAG_NONE, standard nl API req 35 /* UNIX_DIAG_NONE, standard nl API requires this attribute! */ 37 UNIX_DIAG_NAME, 36 UNIX_DIAG_NAME, 38 UNIX_DIAG_VFS, 37 UNIX_DIAG_VFS, 39 UNIX_DIAG_PEER, 38 UNIX_DIAG_PEER, 40 UNIX_DIAG_ICONS, 39 UNIX_DIAG_ICONS, 41 UNIX_DIAG_RQLEN, 40 UNIX_DIAG_RQLEN, 42 UNIX_DIAG_MEMINFO, 41 UNIX_DIAG_MEMINFO, 43 UNIX_DIAG_SHUTDOWN, 42 UNIX_DIAG_SHUTDOWN, 44 UNIX_DIAG_UID, << 45 43 46 __UNIX_DIAG_MAX, 44 __UNIX_DIAG_MAX, 47 }; 45 }; 48 46 49 #define UNIX_DIAG_MAX (__UNIX_DIAG_MAX - 1) 47 #define UNIX_DIAG_MAX (__UNIX_DIAG_MAX - 1) 50 48 51 struct unix_diag_vfs { 49 struct unix_diag_vfs { 52 __u32 udiag_vfs_ino; 50 __u32 udiag_vfs_ino; 53 __u32 udiag_vfs_dev; 51 __u32 udiag_vfs_dev; 54 }; 52 }; 55 53 56 struct unix_diag_rqlen { 54 struct unix_diag_rqlen { 57 __u32 udiag_rqueue; 55 __u32 udiag_rqueue; 58 __u32 udiag_wqueue; 56 __u32 udiag_wqueue; 59 }; 57 }; 60 58 61 #endif 59 #endif 62 60
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.