blob: 7b114079a51bb18327c96005cd7c6a9864bc4a25 [file] [log] [blame]
Remi Denis-Courmont4b07b3f2008-09-22 20:02:10 -07001/*
2 * File: af_phonet.h
3 *
4 * Phonet sockets kernel definitions
5 *
6 * Copyright (C) 2008 Nokia Corporation.
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 AF_PHONET_H
24#define AF_PHONET_H
25
26/*
27 * The lower layers may not require more space, ever. Make sure it's
28 * enough.
29 */
Remi Denis-Courmonte214a8c2008-10-26 23:06:31 -070030#define MAX_PHONET_HEADER (8 + MAX_HEADER)
Remi Denis-Courmont4b07b3f2008-09-22 20:02:10 -070031
Remi Denis-Courmontba113a92008-09-22 20:05:19 -070032/*
33 * Every Phonet* socket has this structure first in its
34 * protocol-specific structure under name c.
35 */
36struct pn_sock {
37 struct sock sk;
38 u16 sobject;
39 u8 resource;
40};
41
42static inline struct pn_sock *pn_sk(struct sock *sk)
43{
44 return (struct pn_sock *)sk;
45}
46
47extern const struct proto_ops phonet_dgram_ops;
48
Rémi Denis-Courmont6b0d07b2009-11-09 02:17:01 +000049void pn_sock_init(void);
Rémi Denis-Courmont52404882008-12-03 15:42:56 -080050struct sock *pn_find_sock_by_sa(struct net *net, const struct sockaddr_pn *sa);
Rémi Denis-Courmontf14001f2009-10-14 00:48:27 +000051void pn_deliver_sock_broadcast(struct net *net, struct sk_buff *skb);
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070052void phonet_get_local_port_range(int *min, int *max);
Remi Denis-Courmontba113a92008-09-22 20:05:19 -070053void pn_sock_hash(struct sock *sk);
54void pn_sock_unhash(struct sock *sk);
55int pn_sock_get_port(struct sock *sk, unsigned short sport);
56
Remi Denis-Courmont107d0d92008-09-22 20:05:57 -070057int pn_skb_send(struct sock *sk, struct sk_buff *skb,
58 const struct sockaddr_pn *target);
59
Remi Denis-Courmont4b07b3f2008-09-22 20:02:10 -070060static inline struct phonethdr *pn_hdr(struct sk_buff *skb)
61{
62 return (struct phonethdr *)skb_network_header(skb);
63}
64
Remi Denis-Courmontbe0c52b2008-09-22 20:09:13 -070065static inline struct phonetmsg *pn_msg(struct sk_buff *skb)
66{
67 return (struct phonetmsg *)skb_transport_header(skb);
68}
69
Remi Denis-Courmont4b07b3f2008-09-22 20:02:10 -070070/*
71 * Get the other party's sockaddr from received skb. The skb begins
72 * with a Phonet header.
73 */
74static inline
75void pn_skb_get_src_sockaddr(struct sk_buff *skb, struct sockaddr_pn *sa)
76{
77 struct phonethdr *ph = pn_hdr(skb);
78 u16 obj = pn_object(ph->pn_sdev, ph->pn_sobj);
79
80 sa->spn_family = AF_PHONET;
81 pn_sockaddr_set_object(sa, obj);
82 pn_sockaddr_set_resource(sa, ph->pn_res);
83 memset(sa->spn_zero, 0, sizeof(sa->spn_zero));
84}
85
86static inline
87void pn_skb_get_dst_sockaddr(struct sk_buff *skb, struct sockaddr_pn *sa)
88{
89 struct phonethdr *ph = pn_hdr(skb);
90 u16 obj = pn_object(ph->pn_rdev, ph->pn_robj);
91
92 sa->spn_family = AF_PHONET;
93 pn_sockaddr_set_object(sa, obj);
94 pn_sockaddr_set_resource(sa, ph->pn_res);
95 memset(sa->spn_zero, 0, sizeof(sa->spn_zero));
96}
97
98/* Protocols in Phonet protocol family. */
99struct phonet_protocol {
Remi Denis-Courmontba113a92008-09-22 20:05:19 -0700100 const struct proto_ops *ops;
Remi Denis-Courmont4b07b3f2008-09-22 20:02:10 -0700101 struct proto *prot;
102 int sock_type;
103};
104
105int phonet_proto_register(int protocol, struct phonet_protocol *pp);
106void phonet_proto_unregister(int protocol, struct phonet_protocol *pp);
107
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -0700108int phonet_sysctl_init(void);
109void phonet_sysctl_exit(void);
Remi Denis-Courmont107d0d92008-09-22 20:05:57 -0700110int isi_register(void);
111void isi_unregister(void);
112
Remi Denis-Courmont4b07b3f2008-09-22 20:02:10 -0700113#endif