| 1 | /* |
| 2 | * switch.h: Switch configuration API |
| 3 | * |
| 4 | * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version 2 |
| 9 | * of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | */ |
| 16 | |
| 17 | #ifndef _UAPI_LINUX_SWITCH_H |
| 18 | #define _UAPI_LINUX_SWITCH_H |
| 19 | |
| 20 | #include <linux/types.h> |
| 21 | #include <linux/netdevice.h> |
| 22 | #include <linux/netlink.h> |
| 23 | #include <linux/genetlink.h> |
| 24 | #ifndef __KERNEL__ |
| 25 | #include <netlink/netlink.h> |
| 26 | #include <netlink/genl/genl.h> |
| 27 | #include <netlink/genl/ctrl.h> |
| 28 | #endif |
| 29 | |
| 30 | /* main attributes */ |
| 31 | enum { |
| 32 | SWITCH_ATTR_UNSPEC, |
| 33 | /* global */ |
| 34 | SWITCH_ATTR_TYPE, |
| 35 | /* device */ |
| 36 | SWITCH_ATTR_ID, |
| 37 | SWITCH_ATTR_DEV_NAME, |
| 38 | SWITCH_ATTR_ALIAS, |
| 39 | SWITCH_ATTR_NAME, |
| 40 | SWITCH_ATTR_VLANS, |
| 41 | SWITCH_ATTR_PORTS, |
| 42 | SWITCH_ATTR_CPU_PORT, |
| 43 | /* attributes */ |
| 44 | SWITCH_ATTR_OP_ID, |
| 45 | SWITCH_ATTR_OP_TYPE, |
| 46 | SWITCH_ATTR_OP_NAME, |
| 47 | SWITCH_ATTR_OP_PORT, |
| 48 | SWITCH_ATTR_OP_VLAN, |
| 49 | SWITCH_ATTR_OP_VALUE_INT, |
| 50 | SWITCH_ATTR_OP_VALUE_STR, |
| 51 | SWITCH_ATTR_OP_VALUE_PORTS, |
| 52 | SWITCH_ATTR_OP_DESCRIPTION, |
| 53 | /* port lists */ |
| 54 | SWITCH_ATTR_PORT, |
| 55 | SWITCH_ATTR_MAX |
| 56 | }; |
| 57 | |
| 58 | /* commands */ |
| 59 | enum { |
| 60 | SWITCH_CMD_UNSPEC, |
| 61 | SWITCH_CMD_GET_SWITCH, |
| 62 | SWITCH_CMD_NEW_ATTR, |
| 63 | SWITCH_CMD_LIST_GLOBAL, |
| 64 | SWITCH_CMD_GET_GLOBAL, |
| 65 | SWITCH_CMD_SET_GLOBAL, |
| 66 | SWITCH_CMD_LIST_PORT, |
| 67 | SWITCH_CMD_GET_PORT, |
| 68 | SWITCH_CMD_SET_PORT, |
| 69 | SWITCH_CMD_LIST_VLAN, |
| 70 | SWITCH_CMD_GET_VLAN, |
| 71 | SWITCH_CMD_SET_VLAN |
| 72 | }; |
| 73 | |
| 74 | /* data types */ |
| 75 | enum switch_val_type { |
| 76 | SWITCH_TYPE_UNSPEC, |
| 77 | SWITCH_TYPE_INT, |
| 78 | SWITCH_TYPE_STRING, |
| 79 | SWITCH_TYPE_PORTS, |
| 80 | SWITCH_TYPE_NOVAL, |
| 81 | }; |
| 82 | |
| 83 | /* port nested attributes */ |
| 84 | enum { |
| 85 | SWITCH_PORT_UNSPEC, |
| 86 | SWITCH_PORT_ID, |
| 87 | SWITCH_PORT_FLAG_TAGGED, |
| 88 | SWITCH_PORT_ATTR_MAX |
| 89 | }; |
| 90 | |
| 91 | #define SWITCH_ATTR_DEFAULTS_OFFSET 0x1000 |
| 92 | |
| 93 | |
| 94 | #endif /* _UAPI_LINUX_SWITCH_H */ |
| 95 | |