Phonet: deliver broadcast packets to broadcast sockets
[safe/jmp/linux-2.6] / include / net / phonet / phonet.h
1 /*
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  */
30 #define MAX_PHONET_HEADER       (8 + MAX_HEADER)
31
32 /*
33  * Every Phonet* socket has this structure first in its
34  * protocol-specific structure under name c.
35  */
36 struct pn_sock {
37         struct sock     sk;
38         u16             sobject;
39         u8              resource;
40 };
41
42 static inline struct pn_sock *pn_sk(struct sock *sk)
43 {
44         return (struct pn_sock *)sk;
45 }
46
47 extern const struct proto_ops phonet_dgram_ops;
48
49 struct sock *pn_find_sock_by_sa(struct net *net, const struct sockaddr_pn *sa);
50 void pn_deliver_sock_broadcast(struct net *net, struct sk_buff *skb);
51 void phonet_get_local_port_range(int *min, int *max);
52 void pn_sock_hash(struct sock *sk);
53 void pn_sock_unhash(struct sock *sk);
54 int pn_sock_get_port(struct sock *sk, unsigned short sport);
55
56 int pn_skb_send(struct sock *sk, struct sk_buff *skb,
57                 const struct sockaddr_pn *target);
58
59 static inline struct phonethdr *pn_hdr(struct sk_buff *skb)
60 {
61         return (struct phonethdr *)skb_network_header(skb);
62 }
63
64 static inline struct phonetmsg *pn_msg(struct sk_buff *skb)
65 {
66         return (struct phonetmsg *)skb_transport_header(skb);
67 }
68
69 /*
70  * Get the other party's sockaddr from received skb. The skb begins
71  * with a Phonet header.
72  */
73 static inline
74 void pn_skb_get_src_sockaddr(struct sk_buff *skb, struct sockaddr_pn *sa)
75 {
76         struct phonethdr *ph = pn_hdr(skb);
77         u16 obj = pn_object(ph->pn_sdev, ph->pn_sobj);
78
79         sa->spn_family = AF_PHONET;
80         pn_sockaddr_set_object(sa, obj);
81         pn_sockaddr_set_resource(sa, ph->pn_res);
82         memset(sa->spn_zero, 0, sizeof(sa->spn_zero));
83 }
84
85 static inline
86 void pn_skb_get_dst_sockaddr(struct sk_buff *skb, struct sockaddr_pn *sa)
87 {
88         struct phonethdr *ph = pn_hdr(skb);
89         u16 obj = pn_object(ph->pn_rdev, ph->pn_robj);
90
91         sa->spn_family = AF_PHONET;
92         pn_sockaddr_set_object(sa, obj);
93         pn_sockaddr_set_resource(sa, ph->pn_res);
94         memset(sa->spn_zero, 0, sizeof(sa->spn_zero));
95 }
96
97 /* Protocols in Phonet protocol family. */
98 struct phonet_protocol {
99         const struct proto_ops  *ops;
100         struct proto            *prot;
101         int                     sock_type;
102 };
103
104 int phonet_proto_register(int protocol, struct phonet_protocol *pp);
105 void phonet_proto_unregister(int protocol, struct phonet_protocol *pp);
106
107 int phonet_sysctl_init(void);
108 void phonet_sysctl_exit(void);
109 int isi_register(void);
110 void isi_unregister(void);
111
112 #endif