headers, net: Use __kernel_sa_family_t in more definitions shared with userland
[linux-2.6-block.git] / include / linux / phonet.h
CommitLineData
bce7b154
RDC
1/**
2 * file phonet.h
3 *
4 * Phonet sockets kernel interface
5 *
6 * Copyright (C) 2008 Nokia Corporation. All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 */
22
23#ifndef LINUX_PHONET_H
24#define LINUX_PHONET_H
25
06f43adb 26#include <linux/types.h>
bcb949b8 27#include <linux/socket.h>
06f43adb 28
bce7b154
RDC
29/* Automatic protocol selection */
30#define PN_PROTO_TRANSPORT 0
31/* Phonet datagram socket */
32#define PN_PROTO_PHONET 1
9641458d
RDC
33/* Phonet pipe */
34#define PN_PROTO_PIPE 2
35#define PHONET_NPROTO 3
bce7b154 36
02a47617
RDC
37/* Socket options for SOL_PNPIPE level */
38#define PNPIPE_ENCAP 1
39#define PNPIPE_IFINDEX 2
acaf7df6 40#define PNPIPE_HANDLE 3
02a47617 41
bce7b154 42#define PNADDR_ANY 0
18a1166d 43#define PNADDR_BROADCAST 0xFC
bce7b154
RDC
44#define PNPORT_RESOURCE_ROUTING 0
45
02a47617
RDC
46/* Values for PNPIPE_ENCAP option */
47#define PNPIPE_ENCAP_NONE 0
48#define PNPIPE_ENCAP_IP 1
49
ba113a94
RDC
50/* ioctls */
51#define SIOCPNGETOBJECT (SIOCPROTOPRIVATE + 0)
7417fa83
RDC
52#define SIOCPNADDRESOURCE (SIOCPROTOPRIVATE + 14)
53#define SIOCPNDELRESOURCE (SIOCPROTOPRIVATE + 15)
ba113a94 54
bce7b154
RDC
55/* Phonet protocol header */
56struct phonethdr {
57 __u8 pn_rdev;
58 __u8 pn_sdev;
59 __u8 pn_res;
60 __be16 pn_length;
61 __u8 pn_robj;
62 __u8 pn_sobj;
09cd2b99 63} __attribute__((packed));
bce7b154 64
be0c52bf
RDC
65/* Common Phonet payload header */
66struct phonetmsg {
67 __u8 pn_trans_id; /* transaction ID */
68 __u8 pn_msg_id; /* message type */
69 union {
70 struct {
71 __u8 pn_submsg_id; /* message subtype */
72 __u8 pn_data[5];
73 } base;
74 struct {
75 __u16 pn_e_res_id; /* extended resource ID */
76 __u8 pn_e_submsg_id; /* message subtype */
77 __u8 pn_e_data[3];
78 } ext;
79 } pn_msg_u;
80};
81#define PN_COMMON_MESSAGE 0xF0
c3a90c78 82#define PN_COMMGR 0x10
be0c52bf
RDC
83#define PN_PREFIX 0xE0 /* resource for extended messages */
84#define pn_submsg_id pn_msg_u.base.pn_submsg_id
85#define pn_e_submsg_id pn_msg_u.ext.pn_e_submsg_id
86#define pn_e_res_id pn_msg_u.ext.pn_e_res_id
87#define pn_data pn_msg_u.base.pn_data
88#define pn_e_data pn_msg_u.ext.pn_e_data
89
90/* data for unreachable errors */
91#define PN_COMM_SERVICE_NOT_IDENTIFIED_RESP 0x01
92#define PN_COMM_ISA_ENTITY_NOT_REACHABLE_RESP 0x14
93#define pn_orig_msg_id pn_data[0]
94#define pn_status pn_data[1]
95#define pn_e_orig_msg_id pn_e_data[0]
96#define pn_e_status pn_e_data[1]
97
bce7b154
RDC
98/* Phonet socket address structure */
99struct sockaddr_pn {
bcb949b8 100 __kernel_sa_family_t spn_family;
bce7b154
RDC
101 __u8 spn_obj;
102 __u8 spn_dev;
103 __u8 spn_resource;
bcb949b8 104 __u8 spn_zero[sizeof(struct sockaddr) - sizeof(__kernel_sa_family_t) - 3];
09cd2b99 105} __attribute__((packed));
bce7b154 106
02571f89
RDC
107/* Well known address */
108#define PN_DEV_PC 0x10
109
bce7b154
RDC
110static inline __u16 pn_object(__u8 addr, __u16 port)
111{
112 return (addr << 8) | (port & 0x3ff);
113}
114
115static inline __u8 pn_obj(__u16 handle)
116{
117 return handle & 0xff;
118}
119
120static inline __u8 pn_dev(__u16 handle)
121{
122 return handle >> 8;
123}
124
125static inline __u16 pn_port(__u16 handle)
126{
127 return handle & 0x3ff;
128}
129
130static inline __u8 pn_addr(__u16 handle)
131{
132 return (handle >> 8) & 0xfc;
133}
134
135static inline void pn_sockaddr_set_addr(struct sockaddr_pn *spn, __u8 addr)
136{
137 spn->spn_dev &= 0x03;
138 spn->spn_dev |= addr & 0xfc;
139}
140
141static inline void pn_sockaddr_set_port(struct sockaddr_pn *spn, __u16 port)
142{
143 spn->spn_dev &= 0xfc;
144 spn->spn_dev |= (port >> 8) & 0x03;
145 spn->spn_obj = port & 0xff;
146}
147
148static inline void pn_sockaddr_set_object(struct sockaddr_pn *spn,
149 __u16 handle)
150{
151 spn->spn_dev = pn_dev(handle);
152 spn->spn_obj = pn_obj(handle);
153}
154
155static inline void pn_sockaddr_set_resource(struct sockaddr_pn *spn,
156 __u8 resource)
157{
158 spn->spn_resource = resource;
159}
160
161static inline __u8 pn_sockaddr_get_addr(const struct sockaddr_pn *spn)
162{
163 return spn->spn_dev & 0xfc;
164}
165
166static inline __u16 pn_sockaddr_get_port(const struct sockaddr_pn *spn)
167{
168 return ((spn->spn_dev & 0x03) << 8) | spn->spn_obj;
169}
170
171static inline __u16 pn_sockaddr_get_object(const struct sockaddr_pn *spn)
172{
173 return pn_object(spn->spn_dev, spn->spn_obj);
174}
175
176static inline __u8 pn_sockaddr_get_resource(const struct sockaddr_pn *spn)
177{
178 return spn->spn_resource;
179}
180
f5bb1c55
RDC
181/* Phonet device ioctl requests */
182#ifdef __KERNEL__
183#define SIOCPNGAUTOCONF (SIOCDEVPRIVATE + 0)
184
185struct if_phonet_autoconf {
186 uint8_t device;
187};
188
189struct if_phonet_req {
190 char ifr_phonet_name[16];
191 union {
192 struct if_phonet_autoconf ifru_phonet_autoconf;
193 } ifr_ifru;
194};
195#define ifr_phonet_autoconf ifr_ifru.ifru_phonet_autoconf
196#endif /* __KERNEL__ */
197
bce7b154 198#endif