blob: 7fa95df60146f2920cf89e2163289017230a91a6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_NETFILTER_H
2#define __LINUX_NETFILTER_H
3
4#ifdef __KERNEL__
5#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/skbuff.h>
7#include <linux/net.h>
8#include <linux/if.h>
Jan Engelhardt2e3075a2008-01-14 23:40:34 -08009#include <linux/in.h>
10#include <linux/in6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/wait.h>
12#include <linux/list.h>
13#endif
Patrick McHardyc8942f12008-05-21 14:08:38 -070014#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/compiler.h>
16
17/* Responses from hook functions. */
18#define NF_DROP 0
19#define NF_ACCEPT 1
20#define NF_STOLEN 2
21#define NF_QUEUE 3
22#define NF_REPEAT 4
23#define NF_STOP 5
24#define NF_MAX_VERDICT NF_STOP
25
Harald Welte0ab43f82005-08-09 19:43:44 -070026/* we overload the higher bits for encoding auxiliary data such as the queue
Florian Westphalf615df72011-01-18 15:52:14 +010027 * number or errno values. Not nice, but better than additional function
28 * arguments. */
29#define NF_VERDICT_MASK 0x000000ff
Harald Welte0ab43f82005-08-09 19:43:44 -070030
Florian Westphalf615df72011-01-18 15:52:14 +010031/* extra verdict flags have mask 0x0000ff00 */
Florian Westphal94b27cc2011-01-18 16:08:30 +010032#define NF_VERDICT_FLAG_QUEUE_BYPASS 0x00008000
Florian Westphalf615df72011-01-18 15:52:14 +010033
34/* queue number (NF_QUEUE) or errno (NF_DROP) */
Harald Welte0ab43f82005-08-09 19:43:44 -070035#define NF_VERDICT_QMASK 0xffff0000
36#define NF_VERDICT_QBITS 16
37
Florian Westphalf615df72011-01-18 15:52:14 +010038#define NF_QUEUE_NR(x) ((((x) << 16) & NF_VERDICT_QMASK) | NF_QUEUE)
Harald Welte0ab43f82005-08-09 19:43:44 -070039
Florian Westphalf615df72011-01-18 15:52:14 +010040#define NF_DROP_ERR(x) (((-x) << 16) | NF_DROP)
Eric Parisda683652010-11-16 11:52:38 +000041
Harald Welte6869c4d2005-08-09 19:24:19 -070042/* only for userspace compatibility */
43#ifndef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* Generic cache responses from hook functions.
45 <= 0x2000 is used for protocol-flags. */
46#define NFC_UNKNOWN 0x4000
47#define NFC_ALTERED 0x8000
Florian Westphalf615df72011-01-18 15:52:14 +010048
49/* NF_VERDICT_BITS should be 8 now, but userspace might break if this changes */
50#define NF_VERDICT_BITS 16
Harald Welte6869c4d2005-08-09 19:24:19 -070051#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Patrick McHardy6e23ae22007-11-19 18:53:30 -080053enum nf_inet_hooks {
54 NF_INET_PRE_ROUTING,
55 NF_INET_LOCAL_IN,
56 NF_INET_FORWARD,
57 NF_INET_LOCAL_OUT,
58 NF_INET_POST_ROUTING,
59 NF_INET_NUMHOOKS
60};
61
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +020062enum {
63 NFPROTO_UNSPEC = 0,
64 NFPROTO_IPV4 = 2,
65 NFPROTO_ARP = 3,
66 NFPROTO_BRIDGE = 7,
67 NFPROTO_IPV6 = 10,
68 NFPROTO_DECNET = 12,
69 NFPROTO_NUMPROTO,
70};
71
Jan Engelhardt643a2c12007-12-17 22:43:50 -080072union nf_inet_addr {
Patrick McHardy7b33ed22008-02-19 17:20:33 -080073 __u32 all[4];
Jan Engelhardt643a2c12007-12-17 22:43:50 -080074 __be32 ip;
75 __be32 ip6[4];
Jan Engelhardt2e3075a2008-01-14 23:40:34 -080076 struct in_addr in;
77 struct in6_addr in6;
Jan Engelhardt643a2c12007-12-17 22:43:50 -080078};
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#ifdef CONFIG_NETFILTER
Florian Westphalf615df72011-01-18 15:52:14 +010082static inline int NF_DROP_GETERR(int verdict)
83{
84 return -(verdict >> NF_VERDICT_QBITS);
85}
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Patrick McHardyb8beedd2008-03-25 20:09:33 -070087static inline int nf_inet_addr_cmp(const union nf_inet_addr *a1,
88 const union nf_inet_addr *a2)
89{
90 return a1->all[0] == a2->all[0] &&
91 a1->all[1] == a2->all[1] &&
92 a1->all[2] == a2->all[2] &&
93 a1->all[3] == a2->all[3];
94}
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096extern void netfilter_init(void);
97
98/* Largest hook number + 1 */
99#define NF_MAX_HOOKS 8
100
101struct sk_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103typedef unsigned int nf_hookfn(unsigned int hooknum,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700104 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 const struct net_device *in,
106 const struct net_device *out,
107 int (*okfn)(struct sk_buff *));
108
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800109struct nf_hook_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 struct list_head list;
111
112 /* User fills in from here down. */
113 nf_hookfn *hook;
114 struct module *owner;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200115 u_int8_t pf;
116 unsigned int hooknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* Hooks are ordered in ascending priority. */
118 int priority;
119};
120
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800121struct nf_sockopt_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 struct list_head list;
123
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200124 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* Non-inclusive ranges: use 0/0/NULL to never get called. */
127 int set_optmin;
128 int set_optmax;
129 int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100130#ifdef CONFIG_COMPAT
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800131 int (*compat_set)(struct sock *sk, int optval,
132 void __user *user, unsigned int len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100133#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 int get_optmin;
135 int get_optmax;
136 int (*get)(struct sock *sk, int optval, void __user *user, int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100137#ifdef CONFIG_COMPAT
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800138 int (*compat_get)(struct sock *sk, int optval,
139 void __user *user, int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100140#endif
Neil Horman16fcec32007-09-11 11:28:26 +0200141 /* Use the module struct to lock set/get code in place */
142 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143};
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* Function to register/unregister hook points. */
146int nf_register_hook(struct nf_hook_ops *reg);
147void nf_unregister_hook(struct nf_hook_ops *reg);
Patrick McHardy972d1cb2006-04-06 14:09:12 -0700148int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
149void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151/* Functions to register get/setsockopt ranges (non-inclusive). You
152 need to check permissions yourself! */
153int nf_register_sockopt(struct nf_sockopt_ops *reg);
154void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
155
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100156#ifdef CONFIG_SYSCTL
157/* Sysctl registration */
Pavel Emelyanovb3fd3ff2008-01-09 00:34:02 -0800158extern struct ctl_path nf_net_netfilter_sysctl_path[];
159extern struct ctl_path nf_net_ipv4_netfilter_sysctl_path[];
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100160#endif /* CONFIG_SYSCTL */
161
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +0200162extern struct list_head nf_hooks[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200164int nf_hook_slow(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800165 struct net_device *indev, struct net_device *outdev,
166 int (*okfn)(struct sk_buff *), int thresh);
167
168/**
169 * nf_hook_thresh - call a netfilter hook
170 *
171 * Returns 1 if the hook has allowed the packet to pass. The function
172 * okfn must be invoked by the caller in this case. Any other return
173 * value indicates the packet has been consumed by the hook.
174 */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200175static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700176 struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800177 struct net_device *indev,
178 struct net_device *outdev,
Jan Engelhardt23f37332009-06-05 17:31:46 +0200179 int (*okfn)(struct sk_buff *), int thresh)
Patrick McHardy16a66772006-01-06 23:01:48 -0800180{
181#ifndef CONFIG_NETFILTER_DEBUG
182 if (list_empty(&nf_hooks[pf][hook]))
183 return 1;
184#endif
Herbert Xu3db05fe2007-10-15 00:53:15 -0700185 return nf_hook_slow(pf, hook, skb, indev, outdev, okfn, thresh);
Patrick McHardy16a66772006-01-06 23:01:48 -0800186}
187
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200188static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800189 struct net_device *indev, struct net_device *outdev,
190 int (*okfn)(struct sk_buff *))
191{
Jan Engelhardt23f37332009-06-05 17:31:46 +0200192 return nf_hook_thresh(pf, hook, skb, indev, outdev, okfn, INT_MIN);
Patrick McHardy16a66772006-01-06 23:01:48 -0800193}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195/* Activate hook; either okfn or kfree_skb called, unless a hook
196 returns NF_STOLEN (in which case, it's up to the hook to deal with
197 the consequences).
198
199 Returns -ERRNO if packet dropped. Zero means queued, stolen or
200 accepted.
201*/
202
203/* RR:
204 > I don't want nf_hook to return anything because people might forget
205 > about async and trust the return value to mean "packet was ok".
206
207 AK:
208 Just document it clearly, then you can expect some sense from kernel
209 coders :)
210*/
211
Jan Engelhardt22490652009-06-13 04:13:26 +0200212static inline int
213NF_HOOK_THRESH(uint8_t pf, unsigned int hook, struct sk_buff *skb,
214 struct net_device *in, struct net_device *out,
215 int (*okfn)(struct sk_buff *), int thresh)
216{
217 int ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, thresh);
218 if (ret == 1)
219 ret = okfn(skb);
220 return ret;
221}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Jan Engelhardt22490652009-06-13 04:13:26 +0200223static inline int
224NF_HOOK_COND(uint8_t pf, unsigned int hook, struct sk_buff *skb,
225 struct net_device *in, struct net_device *out,
226 int (*okfn)(struct sk_buff *), bool cond)
227{
Patrick McHardy4bac6b12010-02-19 08:03:28 +0100228 int ret;
229
230 if (!cond ||
Eric Parisac5aa2e2010-11-12 08:26:06 +0100231 ((ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, INT_MIN)) == 1))
Jan Engelhardt22490652009-06-13 04:13:26 +0200232 ret = okfn(skb);
233 return ret;
234}
Patrick McHardy16a66772006-01-06 23:01:48 -0800235
Jan Engelhardt22490652009-06-13 04:13:26 +0200236static inline int
237NF_HOOK(uint8_t pf, unsigned int hook, struct sk_buff *skb,
238 struct net_device *in, struct net_device *out,
239 int (*okfn)(struct sk_buff *))
240{
241 return NF_HOOK_THRESH(pf, hook, skb, in, out, okfn, INT_MIN);
242}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244/* Call setsockopt() */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200245int nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
David S. Millerb7058842009-09-30 16:12:20 -0700246 unsigned int len);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200247int nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100249#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200250int compat_nf_setsockopt(struct sock *sk, u_int8_t pf, int optval,
David S. Millerb7058842009-09-30 16:12:20 -0700251 char __user *opt, unsigned int len);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200252int compat_nf_getsockopt(struct sock *sk, u_int8_t pf, int optval,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800253 char __user *opt, int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100254#endif
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800255
Harald Welte089af262005-08-09 19:37:23 -0700256/* Call this before modifying an existing packet: ensures it is
257 modifiable and linear to the point you care about (writable_len).
258 Returns true or false. */
Herbert Xu37d41872007-10-14 00:39:18 -0700259extern int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
Harald Welte089af262005-08-09 19:37:23 -0700260
Patrick McHardy1841a4c2007-12-05 01:22:05 -0800261struct flowi;
Patrick McHardy02f014d2007-12-05 01:26:33 -0800262struct nf_queue_entry;
Patrick McHardyc01cd422007-12-05 01:24:48 -0800263
Patrick McHardybce80322006-04-06 14:18:09 -0700264struct nf_afinfo {
265 unsigned short family;
Al Virob51655b2006-11-14 21:40:42 -0800266 __sum16 (*checksum)(struct sk_buff *skb, unsigned int hook,
Patrick McHardy422c3462006-04-06 14:18:43 -0700267 unsigned int dataoff, u_int8_t protocol);
Patrick McHardyd63a6502008-03-20 15:15:53 +0100268 __sum16 (*checksum_partial)(struct sk_buff *skb,
269 unsigned int hook,
270 unsigned int dataoff,
271 unsigned int len,
272 u_int8_t protocol);
Florian Westphal31ad3dd2011-04-04 16:56:29 +0200273 int (*route)(struct net *net, struct dst_entry **dst,
Florian Westphal0fae2e72011-04-04 17:00:54 +0200274 struct flowi *fl, bool strict);
Patrick McHardybce80322006-04-06 14:18:09 -0700275 void (*saveroute)(const struct sk_buff *skb,
Patrick McHardy02f014d2007-12-05 01:26:33 -0800276 struct nf_queue_entry *entry);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700277 int (*reroute)(struct sk_buff *skb,
Patrick McHardy02f014d2007-12-05 01:26:33 -0800278 const struct nf_queue_entry *entry);
Patrick McHardybce80322006-04-06 14:18:09 -0700279 int route_key_size;
Harald Welte2cc7d572005-08-09 19:42:34 -0700280};
281
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100282extern const struct nf_afinfo __rcu *nf_afinfo[NFPROTO_NUMPROTO];
Patrick McHardy1e796fd2007-12-17 22:42:27 -0800283static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family)
Patrick McHardybce80322006-04-06 14:18:09 -0700284{
285 return rcu_dereference(nf_afinfo[family]);
286}
Harald Welte2cc7d572005-08-09 19:42:34 -0700287
Al Virob51655b2006-11-14 21:40:42 -0800288static inline __sum16
Patrick McHardy422c3462006-04-06 14:18:43 -0700289nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
290 u_int8_t protocol, unsigned short family)
291{
Patrick McHardy1e796fd2007-12-17 22:42:27 -0800292 const struct nf_afinfo *afinfo;
Al Virob51655b2006-11-14 21:40:42 -0800293 __sum16 csum = 0;
Patrick McHardy422c3462006-04-06 14:18:43 -0700294
295 rcu_read_lock();
296 afinfo = nf_get_afinfo(family);
297 if (afinfo)
298 csum = afinfo->checksum(skb, hook, dataoff, protocol);
299 rcu_read_unlock();
300 return csum;
301}
302
Patrick McHardyd63a6502008-03-20 15:15:53 +0100303static inline __sum16
304nf_checksum_partial(struct sk_buff *skb, unsigned int hook,
305 unsigned int dataoff, unsigned int len,
306 u_int8_t protocol, unsigned short family)
307{
308 const struct nf_afinfo *afinfo;
309 __sum16 csum = 0;
310
311 rcu_read_lock();
312 afinfo = nf_get_afinfo(family);
313 if (afinfo)
314 csum = afinfo->checksum_partial(skb, hook, dataoff, len,
315 protocol);
316 rcu_read_unlock();
317 return csum;
318}
319
Patrick McHardy1e796fd2007-12-17 22:42:27 -0800320extern int nf_register_afinfo(const struct nf_afinfo *afinfo);
321extern void nf_unregister_afinfo(const struct nf_afinfo *afinfo);
Patrick McHardybce80322006-04-06 14:18:09 -0700322
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800323#include <net/flow.h>
324extern void (*ip_nat_decode_session)(struct sk_buff *, struct flowi *);
325
326static inline void
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200327nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800328{
Patrick McHardy051578c2007-12-17 22:42:51 -0800329#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800330 void (*decodefn)(struct sk_buff *, struct flowi *);
331
Patrick McHardy051578c2007-12-17 22:42:51 -0800332 if (family == AF_INET) {
333 rcu_read_lock();
334 decodefn = rcu_dereference(ip_nat_decode_session);
335 if (decodefn)
336 decodefn(skb, fl);
337 rcu_read_unlock();
338 }
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800339#endif
340}
341
Harald Welte608c8e42005-08-09 19:58:27 -0700342#ifdef CONFIG_PROC_FS
343#include <linux/proc_fs.h>
344extern struct proc_dir_entry *proc_net_netfilter;
345#endif
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347#else /* !CONFIG_NETFILTER */
348#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800349#define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) (okfn)(skb)
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200350static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700351 struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800352 struct net_device *indev,
353 struct net_device *outdev,
Jan Engelhardt23f37332009-06-05 17:31:46 +0200354 int (*okfn)(struct sk_buff *), int thresh)
David S. Millerf53b61d2006-01-07 12:50:27 -0800355{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700356 return okfn(skb);
David S. Millerf53b61d2006-01-07 12:50:27 -0800357}
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200358static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800359 struct net_device *indev, struct net_device *outdev,
360 int (*okfn)(struct sk_buff *))
361{
Patrick McHardy9c92d342006-02-15 15:18:19 -0800362 return 1;
David S. Millerf53b61d2006-01-07 12:50:27 -0800363}
David S. Millerf53b61d2006-01-07 12:50:27 -0800364struct flowi;
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800365static inline void
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200366nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
367{
368}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369#endif /*CONFIG_NETFILTER*/
370
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700371#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100372extern void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *) __rcu;
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700373extern void nf_ct_attach(struct sk_buff *, struct sk_buff *);
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100374extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu;
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700375#else
376static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
377#endif
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#endif /*__KERNEL__*/
380#endif /*__LINUX_NETFILTER_H*/