]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/rxrpc/ar-internal.h
qed: Remove OOM messages
[mirror_ubuntu-artful-kernel.git] / net / rxrpc / ar-internal.h
CommitLineData
17926a79
DH
1/* AF_RXRPC internal definitions
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
be6e6707 12#include <linux/atomic.h>
8496af50 13#include <linux/seqlock.h>
e0e4d82f 14#include <net/sock.h>
be6e6707 15#include <net/af_rxrpc.h>
17926a79
DH
16#include <rxrpc/packet.h>
17
18#if 0
19#define CHECK_SLAB_OKAY(X) \
20 BUG_ON(atomic_read((X)) >> (sizeof(atomic_t) - 2) == \
21 (POISON_FREE << 8 | POISON_FREE))
22#else
b4f1342f 23#define CHECK_SLAB_OKAY(X) do {} while (0)
17926a79
DH
24#endif
25
17926a79
DH
26#define FCRYPT_BSIZE 8
27struct rxrpc_crypt {
28 union {
29 u8 x[FCRYPT_BSIZE];
91e916cf 30 __be32 n[2];
17926a79
DH
31 };
32} __attribute__((aligned(8)));
33
651350d1
DH
34#define rxrpc_queue_work(WS) queue_work(rxrpc_workqueue, (WS))
35#define rxrpc_queue_delayed_work(WS,D) \
36 queue_delayed_work(rxrpc_workqueue, (WS), (D))
37
38#define rxrpc_queue_call(CALL) rxrpc_queue_work(&(CALL)->processor)
17926a79 39
cc8feb8e
DH
40struct rxrpc_connection;
41
d001648e
DH
42/*
43 * Mark applied to socket buffers.
44 */
45enum rxrpc_skb_mark {
46 RXRPC_SKB_MARK_DATA, /* data message */
47 RXRPC_SKB_MARK_FINAL_ACK, /* final ACK received message */
48 RXRPC_SKB_MARK_BUSY, /* server busy message */
49 RXRPC_SKB_MARK_REMOTE_ABORT, /* remote abort message */
50 RXRPC_SKB_MARK_LOCAL_ABORT, /* local abort message */
51 RXRPC_SKB_MARK_NET_ERROR, /* network error message */
52 RXRPC_SKB_MARK_LOCAL_ERROR, /* local error message */
53 RXRPC_SKB_MARK_NEW_CALL, /* local error message */
54};
55
17926a79
DH
56/*
57 * sk_state for RxRPC sockets
58 */
59enum {
2341e077
DH
60 RXRPC_UNBOUND = 0,
61 RXRPC_CLIENT_UNBOUND, /* Unbound socket used as client */
17926a79 62 RXRPC_CLIENT_BOUND, /* client local address bound */
17926a79
DH
63 RXRPC_SERVER_BOUND, /* server local address bound */
64 RXRPC_SERVER_LISTENING, /* server listening for connections */
65 RXRPC_CLOSE, /* socket is being closed */
66};
67
68/*
69 * RxRPC socket definition
70 */
71struct rxrpc_sock {
72 /* WARNING: sk has to be the first member */
73 struct sock sk;
d001648e 74 rxrpc_notify_new_call_t notify_new_call; /* Func to notify of new call */
17926a79 75 struct rxrpc_local *local; /* local endpoint */
17926a79
DH
76 struct list_head listen_link; /* link in the local endpoint's listen list */
77 struct list_head secureq; /* calls awaiting connection security clearance */
78 struct list_head acceptq; /* calls awaiting acceptance */
79 struct key *key; /* security for this socket */
80 struct key *securities; /* list of server security descriptors */
81 struct rb_root calls; /* outstanding calls on this socket */
82 unsigned long flags;
2341e077 83#define RXRPC_SOCK_CONNECTED 0 /* connect_srx is set */
17926a79
DH
84 rwlock_t call_lock; /* lock for calls */
85 u32 min_sec_level; /* minimum security level */
86#define RXRPC_SECURITY_MAX RXRPC_SECURITY_ENCRYPT
cc8feb8e
DH
87 bool exclusive; /* Exclusive connection for a client socket */
88 sa_family_t family; /* Protocol family created with */
17926a79 89 struct sockaddr_rxrpc srx; /* local address */
2341e077 90 struct sockaddr_rxrpc connect_srx; /* Default client address from connect() */
17926a79
DH
91};
92
93#define rxrpc_sk(__sk) container_of((__sk), struct rxrpc_sock, sk)
94
0d12f8a4
DH
95/*
96 * CPU-byteorder normalised Rx packet header.
97 */
98struct rxrpc_host_header {
99 u32 epoch; /* client boot timestamp */
100 u32 cid; /* connection and channel ID */
101 u32 callNumber; /* call ID (0 for connection-level packets) */
102 u32 seq; /* sequence number of pkt in call stream */
103 u32 serial; /* serial number of pkt sent to network */
104 u8 type; /* packet type */
105 u8 flags; /* packet flags */
106 u8 userStatus; /* app-layer defined status */
107 u8 securityIndex; /* security protocol ID */
108 union {
109 u16 _rsvd; /* reserved */
110 u16 cksum; /* kerberos security checksum */
111 };
112 u16 serviceId; /* service ID */
113} __packed;
114
17926a79
DH
115/*
116 * RxRPC socket buffer private variables
117 * - max 48 bytes (struct sk_buff::cb)
118 */
119struct rxrpc_skb_priv {
120 struct rxrpc_call *call; /* call with which associated */
121 unsigned long resend_at; /* time in jiffies at which to resend */
122 union {
95c96174 123 unsigned int offset; /* offset into buffer of next read */
17926a79
DH
124 int remain; /* amount of space remaining for next write */
125 u32 error; /* network error code */
126 bool need_resend; /* T if needs resending */
127 };
128
0d12f8a4 129 struct rxrpc_host_header hdr; /* RxRPC packet header from this packet */
17926a79
DH
130};
131
132#define rxrpc_skb(__skb) ((struct rxrpc_skb_priv *) &(__skb)->cb)
133
17926a79
DH
134/*
135 * RxRPC security module interface
136 */
137struct rxrpc_security {
17926a79
DH
138 const char *name; /* name of this service */
139 u8 security_index; /* security type provided */
140
648af7fc
DH
141 /* Initialise a security service */
142 int (*init)(void);
143
144 /* Clean up a security service */
145 void (*exit)(void);
146
17926a79
DH
147 /* initialise a connection's security */
148 int (*init_connection_security)(struct rxrpc_connection *);
149
150 /* prime a connection's packet security */
a263629d 151 int (*prime_packet_security)(struct rxrpc_connection *);
17926a79
DH
152
153 /* impose security on a packet */
a263629d 154 int (*secure_packet)(struct rxrpc_call *,
17926a79
DH
155 struct sk_buff *,
156 size_t,
157 void *);
158
159 /* verify the security on a received packet */
a263629d 160 int (*verify_packet)(struct rxrpc_call *, struct sk_buff *, u32 *);
17926a79
DH
161
162 /* issue a challenge */
163 int (*issue_challenge)(struct rxrpc_connection *);
164
165 /* respond to a challenge */
166 int (*respond_to_challenge)(struct rxrpc_connection *,
167 struct sk_buff *,
168 u32 *);
169
170 /* verify a response */
171 int (*verify_response)(struct rxrpc_connection *,
172 struct sk_buff *,
173 u32 *);
174
175 /* clear connection security */
176 void (*clear)(struct rxrpc_connection *);
177};
178
179/*
4f95dd78
DH
180 * RxRPC local transport endpoint description
181 * - owned by a single AF_RXRPC socket
182 * - pointed to by transport socket struct sk_user_data
17926a79
DH
183 */
184struct rxrpc_local {
4f95dd78
DH
185 struct rcu_head rcu;
186 atomic_t usage;
187 struct list_head link;
17926a79 188 struct socket *socket; /* my UDP socket */
4f95dd78 189 struct work_struct processor;
17926a79 190 struct list_head services; /* services listening on this endpoint */
17926a79
DH
191 struct rw_semaphore defrag_sem; /* control re-enablement of IP DF bit */
192 struct sk_buff_head accept_queue; /* incoming calls awaiting acceptance */
193 struct sk_buff_head reject_queue; /* packets awaiting rejection */
44ba0698 194 struct sk_buff_head event_queue; /* endpoint event packets awaiting processing */
999b69f8
DH
195 struct rb_root client_conns; /* Client connections by socket params */
196 spinlock_t client_conns_lock; /* Lock for client_conns */
17926a79
DH
197 spinlock_t lock; /* access lock */
198 rwlock_t services_lock; /* lock for services list */
17926a79 199 int debug_id; /* debug ID for printks */
4f95dd78 200 bool dead;
17926a79
DH
201 struct sockaddr_rxrpc srx; /* local address */
202};
203
204/*
205 * RxRPC remote transport endpoint definition
be6e6707 206 * - matched by local endpoint, remote port, address and protocol type
17926a79
DH
207 */
208struct rxrpc_peer {
be6e6707
DH
209 struct rcu_head rcu; /* This must be first */
210 atomic_t usage;
211 unsigned long hash_key;
212 struct hlist_node hash_link;
213 struct rxrpc_local *local;
f66d7490
DH
214 struct hlist_head error_targets; /* targets for net error distribution */
215 struct work_struct error_distributor;
aa390bbe 216 struct rb_root service_conns; /* Service connections */
8496af50 217 seqlock_t service_conn_lock;
17926a79 218 spinlock_t lock; /* access lock */
95c96174
ED
219 unsigned int if_mtu; /* interface MTU for this peer */
220 unsigned int mtu; /* network MTU for this peer */
221 unsigned int maxdata; /* data size (MTU - hdrsize) */
17926a79
DH
222 unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */
223 int debug_id; /* debug ID for printks */
f66d7490
DH
224 int error_report; /* Net (+0) or local (+1000000) to distribute */
225#define RXRPC_LOCAL_ERROR_OFFSET 1000000
17926a79
DH
226 struct sockaddr_rxrpc srx; /* remote address */
227
228 /* calculated RTT cache */
229#define RXRPC_RTT_CACHE_SIZE 32
230 suseconds_t rtt; /* current RTT estimate (in uS) */
95c96174
ED
231 unsigned int rtt_point; /* next entry at which to insert */
232 unsigned int rtt_usage; /* amount of cache actually used */
17926a79
DH
233 suseconds_t rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* calculated RTT cache */
234};
235
19ffa01c
DH
236/*
237 * Keys for matching a connection.
238 */
239struct rxrpc_conn_proto {
e8d70ce1
DH
240 union {
241 struct {
242 u32 epoch; /* epoch of this connection */
243 u32 cid; /* connection ID */
244 };
245 u64 index_key;
19ffa01c
DH
246 };
247};
248
249struct rxrpc_conn_parameters {
250 struct rxrpc_local *local; /* Representation of local endpoint */
251 struct rxrpc_peer *peer; /* Remote endpoint */
252 struct key *key; /* Security details */
253 bool exclusive; /* T if conn is exclusive */
254 u16 service_id; /* Service ID for this connection */
255 u32 security_level; /* Security level selected */
256};
257
bba304db
DH
258/*
259 * Bits in the connection flags.
260 */
261enum rxrpc_conn_flag {
262 RXRPC_CONN_HAS_IDR, /* Has a client conn ID assigned */
001c1122
DH
263 RXRPC_CONN_IN_SERVICE_CONNS, /* Conn is in peer->service_conns */
264 RXRPC_CONN_IN_CLIENT_CONNS, /* Conn is in local->client_conns */
45025bce
DH
265 RXRPC_CONN_EXPOSED, /* Conn has extra ref for exposure */
266 RXRPC_CONN_DONT_REUSE, /* Don't reuse this connection */
267 RXRPC_CONN_COUNTED, /* Counted by rxrpc_nr_client_conns */
bba304db
DH
268};
269
270/*
271 * Events that can be raised upon a connection.
272 */
273enum rxrpc_conn_event {
274 RXRPC_CONN_EV_CHALLENGE, /* Send challenge packet */
275};
276
45025bce
DH
277/*
278 * The connection cache state.
279 */
280enum rxrpc_conn_cache_state {
281 RXRPC_CONN_CLIENT_INACTIVE, /* Conn is not yet listed */
282 RXRPC_CONN_CLIENT_WAITING, /* Conn is on wait list, waiting for capacity */
283 RXRPC_CONN_CLIENT_ACTIVE, /* Conn is on active list, doing calls */
284 RXRPC_CONN_CLIENT_CULLED, /* Conn is culled and delisted, doing calls */
285 RXRPC_CONN_CLIENT_IDLE, /* Conn is on idle list, doing mostly nothing */
286};
287
bba304db
DH
288/*
289 * The connection protocol state.
290 */
291enum rxrpc_conn_proto_state {
292 RXRPC_CONN_UNUSED, /* Connection not yet attempted */
293 RXRPC_CONN_CLIENT, /* Client connection */
294 RXRPC_CONN_SERVICE_UNSECURED, /* Service unsecured connection */
295 RXRPC_CONN_SERVICE_CHALLENGING, /* Service challenging for security */
296 RXRPC_CONN_SERVICE, /* Service secured connection */
297 RXRPC_CONN_REMOTELY_ABORTED, /* Conn aborted by peer */
298 RXRPC_CONN_LOCALLY_ABORTED, /* Conn aborted locally */
bba304db
DH
299 RXRPC_CONN__NR_STATES
300};
301
17926a79
DH
302/*
303 * RxRPC connection definition
aa390bbe 304 * - matched by { local, peer, epoch, conn_id, direction }
17926a79
DH
305 * - each connection can only handle four simultaneous calls
306 */
307struct rxrpc_connection {
19ffa01c
DH
308 struct rxrpc_conn_proto proto;
309 struct rxrpc_conn_parameters params;
310
45025bce
DH
311 atomic_t usage;
312 struct rcu_head rcu;
313 struct list_head cache_link;
a1399f8b 314
45025bce
DH
315 spinlock_t channel_lock;
316 unsigned char active_chans; /* Mask of active channels */
317#define RXRPC_ACTIVE_CHANS_MASK ((1 << RXRPC_MAXCALLS) - 1)
318 struct list_head waiting_calls; /* Calls waiting for channels */
a1399f8b
DH
319 struct rxrpc_channel {
320 struct rxrpc_call __rcu *call; /* Active call */
321 u32 call_id; /* ID of current call */
322 u32 call_counter; /* Call ID counter */
323 u32 last_call; /* ID of last call */
18bfeba5
DH
324 u8 last_type; /* Type of last packet */
325 u16 last_service_id;
326 union {
327 u32 last_seq;
328 u32 last_abort;
329 };
a1399f8b 330 } channels[RXRPC_MAXCALLS];
999b69f8 331
17926a79 332 struct work_struct processor; /* connection event processor */
999b69f8
DH
333 union {
334 struct rb_node client_node; /* Node in local->client_conns */
aa390bbe 335 struct rb_node service_node; /* Node in peer->service_conns */
999b69f8 336 };
4d028b2c 337 struct list_head proc_link; /* link in procfs list */
17926a79 338 struct list_head link; /* link in master connection list */
17926a79 339 struct sk_buff_head rx_queue; /* received conn-level packets */
648af7fc 340 const struct rxrpc_security *security; /* applied security module */
17926a79 341 struct key *server_key; /* security for this service */
1afe593b 342 struct crypto_skcipher *cipher; /* encryption handle */
17926a79 343 struct rxrpc_crypt csum_iv; /* packet checksum base */
4a3388c8 344 unsigned long flags;
17926a79 345 unsigned long events;
f51b4480 346 unsigned long idle_timestamp; /* Time at which last became idle */
17926a79 347 spinlock_t state_lock; /* state-change lock */
45025bce 348 enum rxrpc_conn_cache_state cache_state : 8;
bba304db 349 enum rxrpc_conn_proto_state state : 8; /* current state of connection */
dc44b3a0
DH
350 u32 local_abort; /* local abort code */
351 u32 remote_abort; /* remote abort code */
17926a79 352 int debug_id; /* debug ID for printks */
17926a79 353 atomic_t serial; /* packet serial number counter */
563ea7d5 354 unsigned int hi_serial; /* highest serial number received */
17926a79
DH
355 u8 size_align; /* data size alignment (for security) */
356 u8 header_size; /* rxrpc + security header size */
357 u8 security_size; /* security header size */
17926a79 358 u32 security_nonce; /* response re-use preventer */
17926a79 359 u8 security_ix; /* security type */
17926a79
DH
360 u8 out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
361};
362
5b8848d1
DH
363/*
364 * Flags in call->flags.
365 */
366enum rxrpc_call_flag {
367 RXRPC_CALL_RELEASED, /* call has been released - no more message to userspace */
368 RXRPC_CALL_TERMINAL_MSG, /* call has given the socket its final message */
369 RXRPC_CALL_RCVD_LAST, /* all packets received */
370 RXRPC_CALL_RUN_RTIMER, /* Tx resend timer started */
371 RXRPC_CALL_TX_SOFT_ACK, /* sent some soft ACKs */
5b8848d1
DH
372 RXRPC_CALL_INIT_ACCEPT, /* acceptance was initiated */
373 RXRPC_CALL_HAS_USERID, /* has a user ID attached */
374 RXRPC_CALL_EXPECT_OOS, /* expect out of sequence packets */
dabe5a79 375 RXRPC_CALL_IS_SERVICE, /* Call is service call */
45025bce 376 RXRPC_CALL_EXPOSED, /* The call was exposed to the world */
d001648e 377 RXRPC_CALL_RX_NO_MORE, /* Don't indicate MSG_MORE from recvmsg() */
5b8848d1
DH
378};
379
380/*
381 * Events that can be raised on a call.
382 */
383enum rxrpc_call_event {
4c198ad1
DH
384 RXRPC_CALL_EV_RCVD_ACKALL, /* ACKALL or reply received */
385 RXRPC_CALL_EV_RCVD_BUSY, /* busy packet received */
386 RXRPC_CALL_EV_RCVD_ABORT, /* abort packet received */
387 RXRPC_CALL_EV_RCVD_ERROR, /* network error received */
388 RXRPC_CALL_EV_ACK_FINAL, /* need to generate final ACK (and release call) */
389 RXRPC_CALL_EV_ACK, /* need to generate ACK */
390 RXRPC_CALL_EV_REJECT_BUSY, /* need to generate busy message */
391 RXRPC_CALL_EV_ABORT, /* need to generate abort */
392 RXRPC_CALL_EV_CONN_ABORT, /* local connection abort generated */
393 RXRPC_CALL_EV_RESEND_TIMER, /* Tx resend timer expired */
394 RXRPC_CALL_EV_RESEND, /* Tx resend required */
395 RXRPC_CALL_EV_DRAIN_RX_OOS, /* drain the Rx out of sequence queue */
396 RXRPC_CALL_EV_LIFE_TIMER, /* call's lifetimer ran out */
397 RXRPC_CALL_EV_ACCEPTED, /* incoming call accepted by userspace app */
398 RXRPC_CALL_EV_SECURED, /* incoming call's connection is now secure */
399 RXRPC_CALL_EV_POST_ACCEPT, /* need to post an "accept?" message to the app */
400 RXRPC_CALL_EV_RELEASE, /* need to release the call's resources */
5b8848d1
DH
401};
402
403/*
404 * The states that a call can be in.
405 */
406enum rxrpc_call_state {
999b69f8
DH
407 RXRPC_CALL_UNINITIALISED,
408 RXRPC_CALL_CLIENT_AWAIT_CONN, /* - client waiting for connection to become available */
5b8848d1
DH
409 RXRPC_CALL_CLIENT_SEND_REQUEST, /* - client sending request phase */
410 RXRPC_CALL_CLIENT_AWAIT_REPLY, /* - client awaiting reply */
411 RXRPC_CALL_CLIENT_RECV_REPLY, /* - client receiving reply phase */
412 RXRPC_CALL_CLIENT_FINAL_ACK, /* - client sending final ACK phase */
413 RXRPC_CALL_SERVER_SECURING, /* - server securing request connection */
414 RXRPC_CALL_SERVER_ACCEPTING, /* - server accepting request */
415 RXRPC_CALL_SERVER_RECV_REQUEST, /* - server receiving request */
416 RXRPC_CALL_SERVER_ACK_REQUEST, /* - server pending ACK of request */
417 RXRPC_CALL_SERVER_SEND_REPLY, /* - server sending reply */
418 RXRPC_CALL_SERVER_AWAIT_ACK, /* - server awaiting final ACK */
f5c17aae
DH
419 RXRPC_CALL_COMPLETE, /* - call complete */
420 RXRPC_CALL_DEAD, /* - call is dead */
421 NR__RXRPC_CALL_STATES
422};
423
424/*
425 * Call completion condition (state == RXRPC_CALL_COMPLETE).
426 */
427enum rxrpc_call_completion {
428 RXRPC_CALL_SUCCEEDED, /* - Normal termination */
5b8848d1
DH
429 RXRPC_CALL_SERVER_BUSY, /* - call rejected by busy server */
430 RXRPC_CALL_REMOTELY_ABORTED, /* - call aborted by peer */
431 RXRPC_CALL_LOCALLY_ABORTED, /* - call aborted locally on error or close */
f5c17aae 432 RXRPC_CALL_LOCAL_ERROR, /* - call failed due to local error */
5b8848d1 433 RXRPC_CALL_NETWORK_ERROR, /* - call terminated by network error */
f5c17aae 434 NR__RXRPC_CALL_COMPLETIONS
5b8848d1
DH
435};
436
17926a79
DH
437/*
438 * RxRPC call definition
439 * - matched by { connection, call_id }
440 */
441struct rxrpc_call {
dee46364 442 struct rcu_head rcu;
17926a79 443 struct rxrpc_connection *conn; /* connection carrying call */
df5d8bf7 444 struct rxrpc_peer *peer; /* Peer record for remote address */
17926a79
DH
445 struct rxrpc_sock *socket; /* socket responsible */
446 struct timer_list lifetimer; /* lifetime remaining on call */
447 struct timer_list deadspan; /* reap timer for re-ACK'ing, etc */
448 struct timer_list ack_timer; /* ACK generation timer */
449 struct timer_list resend_timer; /* Tx resend timer */
450 struct work_struct destroyer; /* call destroyer */
451 struct work_struct processor; /* packet processor and ACK generator */
d001648e 452 rxrpc_notify_rx_t notify_rx; /* kernel service Rx notification function */
17926a79 453 struct list_head link; /* link in master call list */
45025bce 454 struct list_head chan_wait_link; /* Link in conn->waiting_calls */
f66d7490 455 struct hlist_node error_link; /* link in error distribution list */
17926a79
DH
456 struct list_head accept_link; /* calls awaiting acceptance */
457 struct rb_node sock_node; /* node in socket call tree */
17926a79
DH
458 struct sk_buff_head rx_queue; /* received packets */
459 struct sk_buff_head rx_oos_queue; /* packets received out of sequence */
d001648e 460 struct sk_buff_head knlrecv_queue; /* Queue for kernel_recv [TODO: replace this] */
17926a79 461 struct sk_buff *tx_pending; /* Tx socket buffer being filled */
45025bce 462 wait_queue_head_t waitq; /* Wait queue for channel or Tx */
a263629d 463 __be32 crypto_buf[2]; /* Temporary packet crypto buffer */
17926a79
DH
464 unsigned long user_call_ID; /* user-defined call ID */
465 unsigned long creation_jif; /* time of call creation */
466 unsigned long flags;
17926a79 467 unsigned long events;
17926a79
DH
468 spinlock_t lock;
469 rwlock_t state_lock; /* lock for state transition */
f5c17aae
DH
470 u32 abort_code; /* Local/remote abort code */
471 int error; /* Local error incurred */
472 enum rxrpc_call_state state : 8; /* current state of call */
473 enum rxrpc_call_completion completion : 8; /* Call completion condition */
17926a79 474 atomic_t usage;
372ee163 475 atomic_t skb_count; /* Outstanding packets on this call */
17926a79 476 atomic_t sequence; /* Tx data packet sequence counter */
dabe5a79
DH
477 u16 service_id; /* service ID */
478 u32 call_id; /* call ID on connection */
479 u32 cid; /* connection ID plus channel index */
480 int debug_id; /* debug ID for printks */
17926a79
DH
481
482 /* transmission-phase ACK management */
4e36a95e
DH
483 u8 acks_head; /* offset into window of first entry */
484 u8 acks_tail; /* offset into window of last entry */
485 u8 acks_winsz; /* size of un-ACK'd window */
486 u8 acks_unacked; /* lowest unacked packet in last ACK received */
17926a79
DH
487 int acks_latest; /* serial number of latest ACK received */
488 rxrpc_seq_t acks_hard; /* highest definitively ACK'd msg seq */
489 unsigned long *acks_window; /* sent packet window
490 * - elements are pointers with LSB set if ACK'd
491 */
492
493 /* receive-phase ACK management */
494 rxrpc_seq_t rx_data_expect; /* next data seq ID expected to be received */
495 rxrpc_seq_t rx_data_post; /* next data seq ID expected to be posted */
496 rxrpc_seq_t rx_data_recv; /* last data seq ID encountered by recvmsg */
497 rxrpc_seq_t rx_data_eaten; /* last data seq ID consumed by recvmsg */
498 rxrpc_seq_t rx_first_oos; /* first packet in rx_oos_queue (or 0) */
499 rxrpc_seq_t ackr_win_top; /* top of ACK window (rx_data_eaten is bottom) */
0d12f8a4 500 rxrpc_seq_t ackr_prev_seq; /* previous sequence number received */
4e36a95e 501 u8 ackr_reason; /* reason to ACK */
563ea7d5 502 u16 ackr_skew; /* skew on packet being ACK'd */
0d12f8a4 503 rxrpc_serial_t ackr_serial; /* serial of packet being ACK'd */
17926a79
DH
504 atomic_t ackr_not_idle; /* number of packets in Rx queue */
505
506 /* received packet records, 1 bit per record */
507#define RXRPC_ACKR_WINDOW_ASZ DIV_ROUND_UP(RXRPC_MAXACKS, BITS_PER_LONG)
508 unsigned long ackr_window[RXRPC_ACKR_WINDOW_ASZ + 1];
17926a79
DH
509};
510
df844fd4
DH
511#include <trace/events/rxrpc.h>
512
17926a79 513/*
651350d1 514 * af_rxrpc.c
17926a79 515 */
651350d1 516extern atomic_t rxrpc_n_skbs;
0d12f8a4 517extern u32 rxrpc_epoch;
651350d1
DH
518extern atomic_t rxrpc_debug_id;
519extern struct workqueue_struct *rxrpc_workqueue;
17926a79
DH
520
521/*
0d81a51a 522 * call_accept.c
17926a79 523 */
4f95dd78 524void rxrpc_accept_incoming_calls(struct rxrpc_local *);
d001648e
DH
525struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *, unsigned long,
526 rxrpc_notify_rx_t);
c1b1203d 527int rxrpc_reject_call(struct rxrpc_sock *);
17926a79
DH
528
529/*
0d81a51a 530 * call_event.c
17926a79 531 */
563ea7d5
DH
532void __rxrpc_propose_ACK(struct rxrpc_call *, u8, u16, u32, bool);
533void rxrpc_propose_ACK(struct rxrpc_call *, u8, u16, u32, bool);
c1b1203d 534void rxrpc_process_call(struct work_struct *);
17926a79
DH
535
536/*
0d81a51a 537 * call_object.c
17926a79 538 */
f5c17aae
DH
539extern const char *const rxrpc_call_states[];
540extern const char *const rxrpc_call_completions[];
dad8aff7
DH
541extern unsigned int rxrpc_max_call_lifetime;
542extern unsigned int rxrpc_dead_call_expiry;
17926a79
DH
543extern struct kmem_cache *rxrpc_call_jar;
544extern struct list_head rxrpc_calls;
545extern rwlock_t rxrpc_call_lock;
546
2341e077
DH
547struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *, unsigned long);
548struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *,
19ffa01c 549 struct rxrpc_conn_parameters *,
999b69f8 550 struct sockaddr_rxrpc *,
2341e077 551 unsigned long, gfp_t);
c1b1203d
JP
552struct rxrpc_call *rxrpc_incoming_call(struct rxrpc_sock *,
553 struct rxrpc_connection *,
42886ffe 554 struct sk_buff *);
c1b1203d
JP
555void rxrpc_release_call(struct rxrpc_call *);
556void rxrpc_release_calls_on_socket(struct rxrpc_sock *);
e34d4234
DH
557void rxrpc_see_call(struct rxrpc_call *);
558void rxrpc_get_call(struct rxrpc_call *);
559void rxrpc_put_call(struct rxrpc_call *);
560void rxrpc_get_call_for_skb(struct rxrpc_call *, struct sk_buff *);
561void rxrpc_put_call_for_skb(struct rxrpc_call *, struct sk_buff *);
c1b1203d 562void __exit rxrpc_destroy_all_calls(void);
17926a79 563
dabe5a79
DH
564static inline bool rxrpc_is_service_call(const struct rxrpc_call *call)
565{
566 return test_bit(RXRPC_CALL_IS_SERVICE, &call->flags);
567}
568
569static inline bool rxrpc_is_client_call(const struct rxrpc_call *call)
570{
571 return !rxrpc_is_service_call(call);
572}
573
f5c17aae
DH
574/*
575 * Transition a call to the complete state.
576 */
577static inline bool __rxrpc_set_call_completion(struct rxrpc_call *call,
578 enum rxrpc_call_completion compl,
579 u32 abort_code,
580 int error)
581{
582 if (call->state < RXRPC_CALL_COMPLETE) {
583 call->abort_code = abort_code;
584 call->error = error;
585 call->completion = compl,
586 call->state = RXRPC_CALL_COMPLETE;
587 return true;
588 }
589 return false;
590}
591
592static inline bool rxrpc_set_call_completion(struct rxrpc_call *call,
593 enum rxrpc_call_completion compl,
594 u32 abort_code,
595 int error)
596{
597 int ret;
598
599 write_lock_bh(&call->state_lock);
600 ret = __rxrpc_set_call_completion(call, compl, abort_code, error);
601 write_unlock_bh(&call->state_lock);
602 return ret;
603}
604
605/*
606 * Record that a call successfully completed.
607 */
608static inline void __rxrpc_call_completed(struct rxrpc_call *call)
609{
610 __rxrpc_set_call_completion(call, RXRPC_CALL_SUCCEEDED, 0, 0);
611}
612
613static inline void rxrpc_call_completed(struct rxrpc_call *call)
614{
615 write_lock_bh(&call->state_lock);
616 __rxrpc_call_completed(call);
617 write_unlock_bh(&call->state_lock);
618}
619
620/*
621 * Record that a call is locally aborted.
622 */
623static inline bool __rxrpc_abort_call(struct rxrpc_call *call,
624 u32 abort_code, int error)
625{
626 if (__rxrpc_set_call_completion(call,
627 RXRPC_CALL_LOCALLY_ABORTED,
628 abort_code, error)) {
629 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
630 return true;
631 }
632 return false;
633}
634
635static inline bool rxrpc_abort_call(struct rxrpc_call *call,
636 u32 abort_code, int error)
637{
638 bool ret;
639
640 write_lock_bh(&call->state_lock);
641 ret = __rxrpc_abort_call(call, abort_code, error);
642 write_unlock_bh(&call->state_lock);
643 return ret;
644}
645
4a3388c8
DH
646/*
647 * conn_client.c
648 */
45025bce
DH
649extern unsigned int rxrpc_max_client_connections;
650extern unsigned int rxrpc_reap_client_connections;
651extern unsigned int rxrpc_conn_idle_client_expiry;
652extern unsigned int rxrpc_conn_idle_client_fast_expiry;
4a3388c8
DH
653extern struct idr rxrpc_client_conn_ids;
654
eb9b9d22 655void rxrpc_destroy_client_conn_ids(void);
c6d2b8d7
DH
656int rxrpc_connect_call(struct rxrpc_call *, struct rxrpc_conn_parameters *,
657 struct sockaddr_rxrpc *, gfp_t);
45025bce
DH
658void rxrpc_expose_client_call(struct rxrpc_call *);
659void rxrpc_disconnect_client_call(struct rxrpc_call *);
660void rxrpc_put_client_conn(struct rxrpc_connection *);
661void __exit rxrpc_destroy_all_client_connections(void);
4a3388c8 662
17926a79 663/*
0d81a51a
DH
664 * conn_event.c
665 */
666void rxrpc_process_connection(struct work_struct *);
667void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *);
4f95dd78 668void rxrpc_reject_packets(struct rxrpc_local *);
0d81a51a
DH
669
670/*
671 * conn_object.c
17926a79 672 */
dad8aff7 673extern unsigned int rxrpc_connection_expiry;
17926a79 674extern struct list_head rxrpc_connections;
4d028b2c 675extern struct list_head rxrpc_connection_proc_list;
17926a79
DH
676extern rwlock_t rxrpc_connection_lock;
677
8496af50 678int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
c6d2b8d7 679struct rxrpc_connection *rxrpc_alloc_connection(gfp_t);
8496af50
DH
680struct rxrpc_connection *rxrpc_find_connection_rcu(struct rxrpc_local *,
681 struct sk_buff *);
45025bce 682void __rxrpc_disconnect_call(struct rxrpc_connection *, struct rxrpc_call *);
999b69f8 683void rxrpc_disconnect_call(struct rxrpc_call *);
45025bce 684void rxrpc_kill_connection(struct rxrpc_connection *);
f51b4480 685void __rxrpc_put_connection(struct rxrpc_connection *);
c1b1203d 686void __exit rxrpc_destroy_all_connections(void);
17926a79 687
19ffa01c
DH
688static inline bool rxrpc_conn_is_client(const struct rxrpc_connection *conn)
689{
690 return conn->out_clientflag;
691}
692
693static inline bool rxrpc_conn_is_service(const struct rxrpc_connection *conn)
694{
e8d70ce1 695 return !rxrpc_conn_is_client(conn);
19ffa01c
DH
696}
697
5627cc8b
DH
698static inline void rxrpc_get_connection(struct rxrpc_connection *conn)
699{
700 atomic_inc(&conn->usage);
701}
702
2c4579e4
DH
703static inline
704struct rxrpc_connection *rxrpc_get_connection_maybe(struct rxrpc_connection *conn)
705{
706 return atomic_inc_not_zero(&conn->usage) ? conn : NULL;
707}
5acbee46 708
f51b4480
DH
709static inline void rxrpc_put_connection(struct rxrpc_connection *conn)
710{
45025bce
DH
711 if (!conn)
712 return;
713
714 if (rxrpc_conn_is_client(conn)) {
715 if (atomic_dec_and_test(&conn->usage))
716 rxrpc_put_client_conn(conn);
717 } else {
718 if (atomic_dec_return(&conn->usage) == 1)
719 __rxrpc_put_connection(conn);
720 }
f51b4480
DH
721}
722
723
8496af50 724static inline bool rxrpc_queue_conn(struct rxrpc_connection *conn)
5acbee46 725{
8496af50
DH
726 if (!rxrpc_get_connection_maybe(conn))
727 return false;
728 if (!rxrpc_queue_work(&conn->processor))
2c4579e4 729 rxrpc_put_connection(conn);
8496af50 730 return true;
5acbee46
DH
731}
732
7877a4a4
DH
733/*
734 * conn_service.c
735 */
8496af50
DH
736struct rxrpc_connection *rxrpc_find_service_conn_rcu(struct rxrpc_peer *,
737 struct sk_buff *);
7877a4a4 738struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *,
d991b4a3 739 struct sockaddr_rxrpc *,
7877a4a4 740 struct sk_buff *);
001c1122 741void rxrpc_unpublish_service_conn(struct rxrpc_connection *);
7877a4a4 742
17926a79 743/*
0d81a51a 744 * input.c
17926a79 745 */
0d81a51a
DH
746void rxrpc_data_ready(struct sock *);
747int rxrpc_queue_rcv_skb(struct rxrpc_call *, struct sk_buff *, bool, bool);
748void rxrpc_fast_process_packet(struct rxrpc_call *, struct sk_buff *);
17926a79
DH
749
750/*
0d81a51a 751 * insecure.c
17926a79 752 */
0d81a51a 753extern const struct rxrpc_security rxrpc_no_security;
17926a79
DH
754
755/*
0d81a51a 756 * key.c
17926a79 757 */
0d81a51a
DH
758extern struct key_type key_type_rxrpc;
759extern struct key_type key_type_rxrpc_s;
760
761int rxrpc_request_key(struct rxrpc_sock *, char __user *, int);
762int rxrpc_server_keyring(struct rxrpc_sock *, char __user *, int);
763int rxrpc_get_server_data_key(struct rxrpc_connection *, const void *, time_t,
764 u32);
17926a79 765
87563616
DH
766/*
767 * local_event.c
768 */
4f95dd78 769extern void rxrpc_process_local_events(struct rxrpc_local *);
87563616 770
17926a79 771/*
0d81a51a 772 * local_object.c
17926a79 773 */
4f95dd78
DH
774struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *);
775void __rxrpc_put_local(struct rxrpc_local *);
c1b1203d 776void __exit rxrpc_destroy_all_locals(void);
17926a79 777
4f95dd78
DH
778static inline void rxrpc_get_local(struct rxrpc_local *local)
779{
780 atomic_inc(&local->usage);
781}
782
783static inline
784struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
785{
786 return atomic_inc_not_zero(&local->usage) ? local : NULL;
787}
788
789static inline void rxrpc_put_local(struct rxrpc_local *local)
790{
5627cc8b 791 if (local && atomic_dec_and_test(&local->usage))
4f95dd78
DH
792 __rxrpc_put_local(local);
793}
794
5acbee46
DH
795static inline void rxrpc_queue_local(struct rxrpc_local *local)
796{
797 rxrpc_queue_work(&local->processor);
798}
799
17926a79 800/*
0d81a51a 801 * misc.c
17926a79 802 */
0d81a51a
DH
803extern unsigned int rxrpc_max_backlog __read_mostly;
804extern unsigned int rxrpc_requested_ack_delay;
805extern unsigned int rxrpc_soft_ack_delay;
806extern unsigned int rxrpc_idle_ack_delay;
807extern unsigned int rxrpc_rx_window_size;
808extern unsigned int rxrpc_rx_mtu;
809extern unsigned int rxrpc_rx_jumbo_max;
0b58b8a1 810extern unsigned int rxrpc_resend_timeout;
17926a79 811
0d81a51a
DH
812extern const char *const rxrpc_pkts[];
813extern const s8 rxrpc_ack_priority[];
814
815extern const char *rxrpc_acks(u8 reason);
17926a79
DH
816
817/*
0d81a51a 818 * output.c
17926a79 819 */
985a5c82 820int rxrpc_send_data_packet(struct rxrpc_connection *, struct sk_buff *);
17926a79
DH
821
822/*
abe89ef0 823 * peer_event.c
0d81a51a 824 */
abe89ef0 825void rxrpc_error_report(struct sock *);
f66d7490 826void rxrpc_peer_error_distributor(struct work_struct *);
0d81a51a
DH
827
828/*
829 * peer_object.c
17926a79 830 */
be6e6707
DH
831struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *,
832 const struct sockaddr_rxrpc *);
833struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_local *,
834 struct sockaddr_rxrpc *, gfp_t);
835struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *, gfp_t);
836
df5d8bf7 837static inline struct rxrpc_peer *rxrpc_get_peer(struct rxrpc_peer *peer)
be6e6707
DH
838{
839 atomic_inc(&peer->usage);
df5d8bf7 840 return peer;
be6e6707
DH
841}
842
843static inline
844struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
845{
846 return atomic_inc_not_zero(&peer->usage) ? peer : NULL;
847}
848
849extern void __rxrpc_put_peer(struct rxrpc_peer *peer);
850static inline void rxrpc_put_peer(struct rxrpc_peer *peer)
851{
5627cc8b 852 if (peer && atomic_dec_and_test(&peer->usage))
be6e6707
DH
853 __rxrpc_put_peer(peer);
854}
17926a79
DH
855
856/*
0d81a51a 857 * proc.c
17926a79 858 */
036c2e27
JE
859extern const struct file_operations rxrpc_call_seq_fops;
860extern const struct file_operations rxrpc_connection_seq_fops;
17926a79
DH
861
862/*
0d81a51a 863 * recvmsg.c
17926a79 864 */
c1b1203d 865void rxrpc_remove_user_ID(struct rxrpc_sock *, struct rxrpc_call *);
1b784140 866int rxrpc_recvmsg(struct socket *, struct msghdr *, size_t, int);
17926a79
DH
867
868/*
0d81a51a
DH
869 * rxkad.c
870 */
871#ifdef CONFIG_RXKAD
872extern const struct rxrpc_security rxkad;
873#endif
874
875/*
876 * security.c
17926a79 877 */
648af7fc
DH
878int __init rxrpc_init_security(void);
879void rxrpc_exit_security(void);
c1b1203d
JP
880int rxrpc_init_client_conn_security(struct rxrpc_connection *);
881int rxrpc_init_server_conn_security(struct rxrpc_connection *);
0b58b8a1
DH
882
883/*
884 * sendmsg.c
885 */
886int rxrpc_do_sendmsg(struct rxrpc_sock *, struct msghdr *, size_t);
17926a79
DH
887
888/*
0d81a51a 889 * skbuff.c
17926a79 890 */
d001648e 891void rxrpc_kernel_data_consumed(struct rxrpc_call *, struct sk_buff *);
c1b1203d 892void rxrpc_packet_destructor(struct sk_buff *);
df844fd4
DH
893void rxrpc_new_skb(struct sk_buff *);
894void rxrpc_see_skb(struct sk_buff *);
895void rxrpc_get_skb(struct sk_buff *);
896void rxrpc_free_skb(struct sk_buff *);
897void rxrpc_purge_queue(struct sk_buff_head *);
17926a79 898
5873c083
DH
899/*
900 * sysctl.c
901 */
902#ifdef CONFIG_SYSCTL
903extern int __init rxrpc_sysctl_init(void);
904extern void rxrpc_sysctl_exit(void);
905#else
906static inline int __init rxrpc_sysctl_init(void) { return 0; }
907static inline void rxrpc_sysctl_exit(void) {}
908#endif
909
be6e6707
DH
910/*
911 * utils.c
912 */
d991b4a3 913int rxrpc_extract_addr_from_skb(struct sockaddr_rxrpc *, struct sk_buff *);
be6e6707 914
17926a79
DH
915/*
916 * debug tracing
917 */
95c96174 918extern unsigned int rxrpc_debug;
17926a79
DH
919
920#define dbgprintk(FMT,...) \
9f389f4b 921 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
17926a79 922
0dc47877
HH
923#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
924#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
17926a79
DH
925#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
926#define kproto(FMT,...) dbgprintk("### "FMT ,##__VA_ARGS__)
927#define knet(FMT,...) dbgprintk("@@@ "FMT ,##__VA_ARGS__)
928
929
930#if defined(__KDEBUG)
931#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
932#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
933#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
934#define _proto(FMT,...) kproto(FMT,##__VA_ARGS__)
935#define _net(FMT,...) knet(FMT,##__VA_ARGS__)
936
937#elif defined(CONFIG_AF_RXRPC_DEBUG)
938#define RXRPC_DEBUG_KENTER 0x01
939#define RXRPC_DEBUG_KLEAVE 0x02
940#define RXRPC_DEBUG_KDEBUG 0x04
941#define RXRPC_DEBUG_KPROTO 0x08
942#define RXRPC_DEBUG_KNET 0x10
943
944#define _enter(FMT,...) \
945do { \
946 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KENTER)) \
947 kenter(FMT,##__VA_ARGS__); \
948} while (0)
949
950#define _leave(FMT,...) \
951do { \
952 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KLEAVE)) \
953 kleave(FMT,##__VA_ARGS__); \
954} while (0)
955
956#define _debug(FMT,...) \
957do { \
958 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KDEBUG)) \
959 kdebug(FMT,##__VA_ARGS__); \
960} while (0)
961
962#define _proto(FMT,...) \
963do { \
964 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KPROTO)) \
965 kproto(FMT,##__VA_ARGS__); \
966} while (0)
967
968#define _net(FMT,...) \
969do { \
970 if (unlikely(rxrpc_debug & RXRPC_DEBUG_KNET)) \
971 knet(FMT,##__VA_ARGS__); \
972} while (0)
973
974#else
12fdff3f
DH
975#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
976#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
977#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
978#define _proto(FMT,...) no_printk("### "FMT ,##__VA_ARGS__)
979#define _net(FMT,...) no_printk("@@@ "FMT ,##__VA_ARGS__)
17926a79
DH
980#endif
981
982/*
983 * debug assertion checking
984 */
985#if 1 // defined(__KDEBUGALL)
986
987#define ASSERT(X) \
988do { \
989 if (unlikely(!(X))) { \
9b6d5398 990 pr_err("Assertion failed\n"); \
17926a79
DH
991 BUG(); \
992 } \
b4f1342f 993} while (0)
17926a79
DH
994
995#define ASSERTCMP(X, OP, Y) \
996do { \
9b6d5398
JP
997 unsigned long _x = (unsigned long)(X); \
998 unsigned long _y = (unsigned long)(Y); \
999 if (unlikely(!(_x OP _y))) { \
1000 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1001 _x, _x, #OP, _y, _y); \
17926a79
DH
1002 BUG(); \
1003 } \
b4f1342f 1004} while (0)
17926a79
DH
1005
1006#define ASSERTIF(C, X) \
1007do { \
1008 if (unlikely((C) && !(X))) { \
9b6d5398 1009 pr_err("Assertion failed\n"); \
17926a79
DH
1010 BUG(); \
1011 } \
b4f1342f 1012} while (0)
17926a79
DH
1013
1014#define ASSERTIFCMP(C, X, OP, Y) \
1015do { \
9b6d5398
JP
1016 unsigned long _x = (unsigned long)(X); \
1017 unsigned long _y = (unsigned long)(Y); \
1018 if (unlikely((C) && !(_x OP _y))) { \
1019 pr_err("Assertion failed - %lu(0x%lx) %s %lu(0x%lx) is false\n", \
1020 _x, _x, #OP, _y, _y); \
17926a79
DH
1021 BUG(); \
1022 } \
b4f1342f 1023} while (0)
17926a79
DH
1024
1025#else
1026
1027#define ASSERT(X) \
1028do { \
b4f1342f 1029} while (0)
17926a79
DH
1030
1031#define ASSERTCMP(X, OP, Y) \
1032do { \
b4f1342f 1033} while (0)
17926a79
DH
1034
1035#define ASSERTIF(C, X) \
1036do { \
b4f1342f 1037} while (0)
17926a79
DH
1038
1039#define ASSERTIFCMP(C, X, OP, Y) \
1040do { \
b4f1342f 1041} while (0)
17926a79
DH
1042
1043#endif /* __KDEBUGALL */