]> git.ipfire.org Git - thirdparty/linux.git/blame - include/net/af_rxrpc.h
Merge tag 'x86-fpu-2020-06-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[thirdparty/linux.git] / include / net / af_rxrpc.h
CommitLineData
2874c5fd 1/* SPDX-License-Identifier: GPL-2.0-or-later */
651350d1 2/* RxRPC kernel service interface definitions
17926a79 3 *
651350d1 4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
17926a79 5 * Written by David Howells (dhowells@redhat.com)
17926a79
DH
6 */
7
8#ifndef _NET_RXRPC_H
9#define _NET_RXRPC_H
10
11#include <linux/rxrpc.h>
2070a3e4 12#include <linux/ktime.h>
17926a79 13
4de48af6
DH
14struct key;
15struct sock;
16struct socket;
651350d1
DH
17struct rxrpc_call;
18
e138aa7d
DH
19enum rxrpc_interruptibility {
20 RXRPC_INTERRUPTIBLE, /* Call is interruptible */
21 RXRPC_PREINTERRUPTIBLE, /* Call can be cancelled whilst waiting for a slot */
22 RXRPC_UNINTERRUPTIBLE, /* Call should not be interruptible at all */
23};
24
a25e21f0
DH
25/*
26 * Debug ID counter for tracing.
27 */
28extern atomic_t rxrpc_debug_id;
29
d001648e
DH
30typedef void (*rxrpc_notify_rx_t)(struct sock *, struct rxrpc_call *,
31 unsigned long);
e833251a
DH
32typedef void (*rxrpc_notify_end_tx_t)(struct sock *, struct rxrpc_call *,
33 unsigned long);
00e90712
DH
34typedef void (*rxrpc_notify_new_call_t)(struct sock *, struct rxrpc_call *,
35 unsigned long);
36typedef void (*rxrpc_discard_new_call_t)(struct rxrpc_call *, unsigned long);
37typedef void (*rxrpc_user_attach_call_t)(struct rxrpc_call *, unsigned long);
651350d1 38
d001648e 39void rxrpc_kernel_new_call_notification(struct socket *,
00e90712
DH
40 rxrpc_notify_new_call_t,
41 rxrpc_discard_new_call_t);
cd2cf63a
JP
42struct rxrpc_call *rxrpc_kernel_begin_call(struct socket *,
43 struct sockaddr_rxrpc *,
44 struct key *,
45 unsigned long,
e754eba6 46 s64,
d001648e 47 gfp_t,
a68f4a27 48 rxrpc_notify_rx_t,
a25e21f0 49 bool,
e138aa7d 50 enum rxrpc_interruptibility,
a25e21f0 51 unsigned int);
4de48af6 52int rxrpc_kernel_send_data(struct socket *, struct rxrpc_call *,
e833251a
DH
53 struct msghdr *, size_t,
54 rxrpc_notify_end_tx_t);
d001648e 55int rxrpc_kernel_recv_data(struct socket *, struct rxrpc_call *,
eb9950eb 56 struct iov_iter *, bool, u32 *, u16 *);
84a4c09c 57bool rxrpc_kernel_abort_call(struct socket *, struct rxrpc_call *,
5a42976d 58 u32, int, const char *);
4de48af6 59void rxrpc_kernel_end_call(struct socket *, struct rxrpc_call *);
8324f0bc
DH
60void rxrpc_kernel_get_peer(struct socket *, struct rxrpc_call *,
61 struct sockaddr_rxrpc *);
c410bf01 62u32 rxrpc_kernel_get_srtt(struct socket *, struct rxrpc_call *);
00e90712 63int rxrpc_kernel_charge_accept(struct socket *, rxrpc_notify_rx_t,
a25e21f0
DH
64 rxrpc_user_attach_call_t, unsigned long, gfp_t,
65 unsigned int);
e754eba6 66void rxrpc_kernel_set_tx_length(struct socket *, struct rxrpc_call *, s64);
7d7587db 67bool rxrpc_kernel_check_life(const struct socket *, const struct rxrpc_call *);
e908bcf4 68u32 rxrpc_kernel_get_epoch(struct socket *, struct rxrpc_call *);
2070a3e4
DH
69bool rxrpc_kernel_get_reply_time(struct socket *, struct rxrpc_call *,
70 ktime_t *);
4611da30 71bool rxrpc_kernel_call_is_complete(struct rxrpc_call *);
bbd172e3
DH
72void rxrpc_kernel_set_max_life(struct socket *, struct rxrpc_call *,
73 unsigned long);
651350d1 74
17926a79 75#endif /* _NET_RXRPC_H */