4 * Phonet sockets kernel interface
6 * Copyright (C) 2008 Nokia Corporation. All rights reserved.
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.
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.
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
23 #ifndef LINUX_PHONET_H
24 #define LINUX_PHONET_H
26 #include <linux/types.h>
27 #include <linux/socket.h>
29 /* Automatic protocol selection */
30 #define PN_PROTO_TRANSPORT 0
31 /* Phonet datagram socket */
32 #define PN_PROTO_PHONET 1
34 #define PN_PROTO_PIPE 2
35 #define PHONET_NPROTO 3
37 /* Socket options for SOL_PNPIPE level */
38 #define PNPIPE_ENCAP 1
39 #define PNPIPE_IFINDEX 2
40 #define PNPIPE_HANDLE 3
41 #define PNPIPE_INITSTATE 4
44 #define PNADDR_BROADCAST 0xFC
45 #define PNPORT_RESOURCE_ROUTING 0
47 /* Values for PNPIPE_ENCAP option */
48 #define PNPIPE_ENCAP_NONE 0
49 #define PNPIPE_ENCAP_IP 1
52 #define SIOCPNGETOBJECT (SIOCPROTOPRIVATE + 0)
53 #define SIOCPNENABLEPIPE (SIOCPROTOPRIVATE + 13)
54 #define SIOCPNADDRESOURCE (SIOCPROTOPRIVATE + 14)
55 #define SIOCPNDELRESOURCE (SIOCPROTOPRIVATE + 15)
57 /* Phonet protocol header */
65 } __attribute__((packed));
67 /* Common Phonet payload header */
69 __u8 pn_trans_id; /* transaction ID */
70 __u8 pn_msg_id; /* message type */
73 __u8 pn_submsg_id; /* message subtype */
77 __u16 pn_e_res_id; /* extended resource ID */
78 __u8 pn_e_submsg_id; /* message subtype */
83 #define PN_COMMON_MESSAGE 0xF0
84 #define PN_COMMGR 0x10
85 #define PN_PREFIX 0xE0 /* resource for extended messages */
86 #define pn_submsg_id pn_msg_u.base.pn_submsg_id
87 #define pn_e_submsg_id pn_msg_u.ext.pn_e_submsg_id
88 #define pn_e_res_id pn_msg_u.ext.pn_e_res_id
89 #define pn_data pn_msg_u.base.pn_data
90 #define pn_e_data pn_msg_u.ext.pn_e_data
92 /* data for unreachable errors */
93 #define PN_COMM_SERVICE_NOT_IDENTIFIED_RESP 0x01
94 #define PN_COMM_ISA_ENTITY_NOT_REACHABLE_RESP 0x14
95 #define pn_orig_msg_id pn_data[0]
96 #define pn_status pn_data[1]
97 #define pn_e_orig_msg_id pn_e_data[0]
98 #define pn_e_status pn_e_data[1]
100 /* Phonet socket address structure */
102 __kernel_sa_family_t spn_family;
106 __u8 spn_zero[sizeof(struct sockaddr) - sizeof(__kernel_sa_family_t) - 3];
107 } __attribute__((packed));
109 /* Well known address */
110 #define PN_DEV_PC 0x10
112 static inline __u16 pn_object(__u8 addr, __u16 port)
114 return (addr << 8) | (port & 0x3ff);
117 static inline __u8 pn_obj(__u16 handle)
119 return handle & 0xff;
122 static inline __u8 pn_dev(__u16 handle)
127 static inline __u16 pn_port(__u16 handle)
129 return handle & 0x3ff;
132 static inline __u8 pn_addr(__u16 handle)
134 return (handle >> 8) & 0xfc;
137 static inline void pn_sockaddr_set_addr(struct sockaddr_pn *spn, __u8 addr)
139 spn->spn_dev &= 0x03;
140 spn->spn_dev |= addr & 0xfc;
143 static inline void pn_sockaddr_set_port(struct sockaddr_pn *spn, __u16 port)
145 spn->spn_dev &= 0xfc;
146 spn->spn_dev |= (port >> 8) & 0x03;
147 spn->spn_obj = port & 0xff;
150 static inline void pn_sockaddr_set_object(struct sockaddr_pn *spn,
153 spn->spn_dev = pn_dev(handle);
154 spn->spn_obj = pn_obj(handle);
157 static inline void pn_sockaddr_set_resource(struct sockaddr_pn *spn,
160 spn->spn_resource = resource;
163 static inline __u8 pn_sockaddr_get_addr(const struct sockaddr_pn *spn)
165 return spn->spn_dev & 0xfc;
168 static inline __u16 pn_sockaddr_get_port(const struct sockaddr_pn *spn)
170 return ((spn->spn_dev & 0x03) << 8) | spn->spn_obj;
173 static inline __u16 pn_sockaddr_get_object(const struct sockaddr_pn *spn)
175 return pn_object(spn->spn_dev, spn->spn_obj);
178 static inline __u8 pn_sockaddr_get_resource(const struct sockaddr_pn *spn)
180 return spn->spn_resource;
183 /* Phonet device ioctl requests */
185 #define SIOCPNGAUTOCONF (SIOCDEVPRIVATE + 0)
187 struct if_phonet_autoconf {
191 struct if_phonet_req {
192 char ifr_phonet_name[16];
194 struct if_phonet_autoconf ifru_phonet_autoconf;
197 #define ifr_phonet_autoconf ifr_ifru.ifru_phonet_autoconf
198 #endif /* __KERNEL__ */