mirror of
https://github.com/armbian/linux.git
synced 2026-01-06 10:13:00 -08:00
[AF_RXRPC]: Delete the old RxRPC code.
Delete the old RxRPC code as it's now no longer used. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
08e0e7c82e
commit
63b6be55e8
@@ -2038,10 +2038,6 @@ config AFS_DEBUG
|
||||
|
||||
If unsure, say N.
|
||||
|
||||
|
||||
config RXRPC
|
||||
tristate
|
||||
|
||||
config 9P_FS
|
||||
tristate "Plan 9 Resource Sharing Support (9P2000) (Experimental)"
|
||||
depends on INET && EXPERIMENTAL
|
||||
|
||||
@@ -1,212 +0,0 @@
|
||||
/* call.h: Rx call record
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_RXRPC_CALL_H
|
||||
#define _LINUX_RXRPC_CALL_H
|
||||
|
||||
#include <rxrpc/types.h>
|
||||
#include <rxrpc/rxrpc.h>
|
||||
#include <rxrpc/packet.h>
|
||||
#include <linux/timer.h>
|
||||
|
||||
#define RXRPC_CALL_ACK_WINDOW_SIZE 16
|
||||
|
||||
extern unsigned rxrpc_call_rcv_timeout; /* receive activity timeout (secs) */
|
||||
|
||||
/* application call state
|
||||
* - only state 0 and ffff are reserved, the state is set to 1 after an opid is received
|
||||
*/
|
||||
enum rxrpc_app_cstate {
|
||||
RXRPC_CSTATE_COMPLETE = 0, /* operation complete */
|
||||
RXRPC_CSTATE_ERROR, /* operation ICMP error or aborted */
|
||||
RXRPC_CSTATE_SRVR_RCV_OPID, /* [SERVER] receiving operation ID */
|
||||
RXRPC_CSTATE_SRVR_RCV_ARGS, /* [SERVER] receiving operation data */
|
||||
RXRPC_CSTATE_SRVR_GOT_ARGS, /* [SERVER] completely received operation data */
|
||||
RXRPC_CSTATE_SRVR_SND_REPLY, /* [SERVER] sending operation reply */
|
||||
RXRPC_CSTATE_SRVR_RCV_FINAL_ACK, /* [SERVER] receiving final ACK */
|
||||
RXRPC_CSTATE_CLNT_SND_ARGS, /* [CLIENT] sending operation args */
|
||||
RXRPC_CSTATE_CLNT_RCV_REPLY, /* [CLIENT] receiving operation reply */
|
||||
RXRPC_CSTATE_CLNT_GOT_REPLY, /* [CLIENT] completely received operation reply */
|
||||
} __attribute__((packed));
|
||||
|
||||
extern const char *rxrpc_call_states[];
|
||||
|
||||
enum rxrpc_app_estate {
|
||||
RXRPC_ESTATE_NO_ERROR = 0, /* no error */
|
||||
RXRPC_ESTATE_LOCAL_ABORT, /* aborted locally by application layer */
|
||||
RXRPC_ESTATE_PEER_ABORT, /* aborted remotely by peer */
|
||||
RXRPC_ESTATE_LOCAL_ERROR, /* local ICMP network error */
|
||||
RXRPC_ESTATE_REMOTE_ERROR, /* remote ICMP network error */
|
||||
} __attribute__((packed));
|
||||
|
||||
extern const char *rxrpc_call_error_states[];
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* Rx call record and application scratch buffer
|
||||
* - the call record occupies the bottom of a complete page
|
||||
* - the application scratch buffer occupies the rest
|
||||
*/
|
||||
struct rxrpc_call
|
||||
{
|
||||
atomic_t usage;
|
||||
struct rxrpc_connection *conn; /* connection upon which active */
|
||||
spinlock_t lock; /* access lock */
|
||||
struct module *owner; /* owner module */
|
||||
wait_queue_head_t waitq; /* wait queue for events to happen */
|
||||
struct list_head link; /* general internal list link */
|
||||
struct list_head call_link; /* master call list link */
|
||||
__be32 chan_ix; /* connection channel index */
|
||||
__be32 call_id; /* call ID on connection */
|
||||
unsigned long cjif; /* jiffies at call creation */
|
||||
unsigned long flags; /* control flags */
|
||||
#define RXRPC_CALL_ACKS_TIMO 0x00000001 /* ACKS timeout reached */
|
||||
#define RXRPC_CALL_ACKR_TIMO 0x00000002 /* ACKR timeout reached */
|
||||
#define RXRPC_CALL_RCV_TIMO 0x00000004 /* RCV timeout reached */
|
||||
#define RXRPC_CALL_RCV_PKT 0x00000008 /* received packet */
|
||||
|
||||
/* transmission */
|
||||
rxrpc_seq_t snd_seq_count; /* outgoing packet sequence number counter */
|
||||
struct rxrpc_message *snd_nextmsg; /* next message being constructed for sending */
|
||||
struct rxrpc_message *snd_ping; /* last ping message sent */
|
||||
unsigned short snd_resend_cnt; /* count of resends since last ACK */
|
||||
|
||||
/* transmission ACK tracking */
|
||||
struct list_head acks_pendq; /* messages pending ACK (ordered by seq) */
|
||||
unsigned acks_pend_cnt; /* number of un-ACK'd packets */
|
||||
rxrpc_seq_t acks_dftv_seq; /* highest definitively ACK'd msg seq */
|
||||
struct timer_list acks_timeout; /* timeout on expected ACK */
|
||||
|
||||
/* reception */
|
||||
struct list_head rcv_receiveq; /* messages pending reception (ordered by seq) */
|
||||
struct list_head rcv_krxiodq_lk; /* krxiod queue for new inbound packets */
|
||||
struct timer_list rcv_timeout; /* call receive activity timeout */
|
||||
|
||||
/* reception ACK'ing */
|
||||
rxrpc_seq_t ackr_win_bot; /* bottom of ACK window */
|
||||
rxrpc_seq_t ackr_win_top; /* top of ACK window */
|
||||
rxrpc_seq_t ackr_high_seq; /* highest seqno yet received */
|
||||
rxrpc_seq_net_t ackr_prev_seq; /* previous seqno received */
|
||||
unsigned ackr_pend_cnt; /* number of pending ACKs */
|
||||
struct timer_list ackr_dfr_timo; /* timeout on deferred ACK */
|
||||
char ackr_dfr_perm; /* request for deferred ACKs permitted */
|
||||
rxrpc_seq_t ackr_dfr_seq; /* seqno for deferred ACK */
|
||||
struct rxrpc_ackpacket ackr; /* pending normal ACK packet */
|
||||
uint8_t ackr_array[RXRPC_CALL_ACK_WINDOW_SIZE]; /* ACK records */
|
||||
|
||||
/* presentation layer */
|
||||
char app_last_rcv; /* T if received last packet from remote end */
|
||||
enum rxrpc_app_cstate app_call_state; /* call state */
|
||||
enum rxrpc_app_estate app_err_state; /* abort/error state */
|
||||
struct list_head app_readyq; /* ordered ready received packet queue */
|
||||
struct list_head app_unreadyq; /* ordered post-hole recv'd packet queue */
|
||||
rxrpc_seq_t app_ready_seq; /* last seq number dropped into readyq */
|
||||
size_t app_ready_qty; /* amount of data ready in readyq */
|
||||
unsigned app_opcode; /* operation ID */
|
||||
unsigned app_abort_code; /* abort code (when aborted) */
|
||||
int app_errno; /* error number (when ICMP error received) */
|
||||
|
||||
/* statisics */
|
||||
unsigned pkt_rcv_count; /* count of received packets on this call */
|
||||
unsigned pkt_snd_count; /* count of sent packets on this call */
|
||||
unsigned app_read_count; /* number of reads issued */
|
||||
|
||||
/* bits for the application to use */
|
||||
rxrpc_call_attn_func_t app_attn_func; /* callback when attention required */
|
||||
rxrpc_call_error_func_t app_error_func; /* callback when abort sent (cleanup and put) */
|
||||
rxrpc_call_aemap_func_t app_aemap_func; /* callback to map abort code to/from errno */
|
||||
void *app_user; /* application data */
|
||||
struct list_head app_link; /* application list linkage */
|
||||
struct list_head app_attn_link; /* application attention list linkage */
|
||||
size_t app_mark; /* trigger callback when app_ready_qty>=app_mark */
|
||||
char app_async_read; /* T if in async-read mode */
|
||||
uint8_t *app_read_buf; /* application async read buffer (app_mark size) */
|
||||
uint8_t *app_scr_alloc; /* application scratch allocation pointer */
|
||||
void *app_scr_ptr; /* application pointer into scratch buffer */
|
||||
|
||||
#define RXRPC_APP_MARK_EOF 0xFFFFFFFFU /* mark at end of input */
|
||||
|
||||
/* application scratch buffer */
|
||||
uint8_t app_scratch[0] __attribute__((aligned(sizeof(long))));
|
||||
};
|
||||
|
||||
#define RXRPC_CALL_SCRATCH_SIZE (PAGE_SIZE - sizeof(struct rxrpc_call))
|
||||
|
||||
#define rxrpc_call_reset_scratch(CALL) \
|
||||
do { (CALL)->app_scr_alloc = (CALL)->app_scratch; } while(0)
|
||||
|
||||
#define rxrpc_call_alloc_scratch(CALL,SIZE) \
|
||||
({ \
|
||||
void *ptr; \
|
||||
ptr = (CALL)->app_scr_alloc; \
|
||||
(CALL)->app_scr_alloc += (SIZE); \
|
||||
if ((SIZE)>RXRPC_CALL_SCRATCH_SIZE || \
|
||||
(size_t)((CALL)->app_scr_alloc - (u8*)(CALL)) > RXRPC_CALL_SCRATCH_SIZE) { \
|
||||
printk("rxrpc_call_alloc_scratch(%p,%Zu)\n",(CALL),(size_t)(SIZE)); \
|
||||
BUG(); \
|
||||
} \
|
||||
ptr; \
|
||||
})
|
||||
|
||||
#define rxrpc_call_alloc_scratch_s(CALL,TYPE) \
|
||||
({ \
|
||||
size_t size = sizeof(TYPE); \
|
||||
TYPE *ptr; \
|
||||
ptr = (TYPE*)(CALL)->app_scr_alloc; \
|
||||
(CALL)->app_scr_alloc += size; \
|
||||
if (size>RXRPC_CALL_SCRATCH_SIZE || \
|
||||
(size_t)((CALL)->app_scr_alloc - (u8*)(CALL)) > RXRPC_CALL_SCRATCH_SIZE) { \
|
||||
printk("rxrpc_call_alloc_scratch(%p,%Zu)\n",(CALL),size); \
|
||||
BUG(); \
|
||||
} \
|
||||
ptr; \
|
||||
})
|
||||
|
||||
#define rxrpc_call_is_ack_pending(CALL) ((CALL)->ackr.reason != 0)
|
||||
|
||||
extern int rxrpc_create_call(struct rxrpc_connection *conn,
|
||||
rxrpc_call_attn_func_t attn,
|
||||
rxrpc_call_error_func_t error,
|
||||
rxrpc_call_aemap_func_t aemap,
|
||||
struct rxrpc_call **_call);
|
||||
|
||||
extern int rxrpc_incoming_call(struct rxrpc_connection *conn,
|
||||
struct rxrpc_message *msg,
|
||||
struct rxrpc_call **_call);
|
||||
|
||||
static inline void rxrpc_get_call(struct rxrpc_call *call)
|
||||
{
|
||||
BUG_ON(atomic_read(&call->usage)<=0);
|
||||
atomic_inc(&call->usage);
|
||||
/*printk("rxrpc_get_call(%p{u=%d})\n",(C),atomic_read(&(C)->usage));*/
|
||||
}
|
||||
|
||||
extern void rxrpc_put_call(struct rxrpc_call *call);
|
||||
|
||||
extern void rxrpc_call_do_stuff(struct rxrpc_call *call);
|
||||
|
||||
extern int rxrpc_call_abort(struct rxrpc_call *call, int error);
|
||||
|
||||
#define RXRPC_CALL_READ_BLOCK 0x0001 /* block if not enough data and not yet EOF */
|
||||
#define RXRPC_CALL_READ_ALL 0x0002 /* error if insufficient data received */
|
||||
extern int rxrpc_call_read_data(struct rxrpc_call *call, void *buffer, size_t size, int flags);
|
||||
|
||||
extern int rxrpc_call_write_data(struct rxrpc_call *call,
|
||||
size_t sioc,
|
||||
struct kvec *siov,
|
||||
uint8_t rxhdr_flags,
|
||||
gfp_t alloc_flags,
|
||||
int dup_data,
|
||||
size_t *size_sent);
|
||||
|
||||
extern void rxrpc_call_handle_error(struct rxrpc_call *conn, int local, int errno);
|
||||
|
||||
#endif /* _LINUX_RXRPC_CALL_H */
|
||||
@@ -1,83 +0,0 @@
|
||||
/* connection.h: Rx connection record
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_RXRPC_CONNECTION_H
|
||||
#define _LINUX_RXRPC_CONNECTION_H
|
||||
|
||||
#include <rxrpc/types.h>
|
||||
#include <rxrpc/krxtimod.h>
|
||||
|
||||
struct sk_buff;
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* Rx connection
|
||||
* - connections are matched by (rmt_port,rmt_addr,service_id,conn_id,clientflag)
|
||||
* - connections only retain a refcount on the peer when they are active
|
||||
* - connections with refcount==0 are inactive and reside in the peer's graveyard
|
||||
*/
|
||||
struct rxrpc_connection
|
||||
{
|
||||
atomic_t usage;
|
||||
struct rxrpc_transport *trans; /* transport endpoint */
|
||||
struct rxrpc_peer *peer; /* peer from/to which connected */
|
||||
struct rxrpc_service *service; /* responsible service (inbound conns) */
|
||||
struct rxrpc_timer timeout; /* decaching timer */
|
||||
struct list_head link; /* link in peer's list */
|
||||
struct list_head proc_link; /* link in proc list */
|
||||
struct list_head err_link; /* link in ICMP error processing list */
|
||||
struct list_head id_link; /* link in ID grant list */
|
||||
struct sockaddr_in addr; /* remote address */
|
||||
struct rxrpc_call *channels[4]; /* channels (active calls) */
|
||||
wait_queue_head_t chanwait; /* wait for channel to become available */
|
||||
spinlock_t lock; /* access lock */
|
||||
struct timeval atime; /* last access time */
|
||||
size_t mtu_size; /* MTU size for outbound messages */
|
||||
unsigned call_counter; /* call ID counter */
|
||||
rxrpc_serial_t serial_counter; /* packet serial number counter */
|
||||
|
||||
/* the following should all be in net order */
|
||||
__be32 in_epoch; /* peer's epoch */
|
||||
__be32 out_epoch; /* my epoch */
|
||||
__be32 conn_id; /* connection ID, appropriately shifted */
|
||||
__be16 service_id; /* service ID */
|
||||
uint8_t security_ix; /* security ID */
|
||||
uint8_t in_clientflag; /* RXRPC_CLIENT_INITIATED if we are server */
|
||||
uint8_t out_clientflag; /* RXRPC_CLIENT_INITIATED if we are client */
|
||||
};
|
||||
|
||||
extern int rxrpc_create_connection(struct rxrpc_transport *trans,
|
||||
__be16 port,
|
||||
__be32 addr,
|
||||
uint16_t service_id,
|
||||
void *security,
|
||||
struct rxrpc_connection **_conn);
|
||||
|
||||
extern int rxrpc_connection_lookup(struct rxrpc_peer *peer,
|
||||
struct rxrpc_message *msg,
|
||||
struct rxrpc_connection **_conn);
|
||||
|
||||
static inline void rxrpc_get_connection(struct rxrpc_connection *conn)
|
||||
{
|
||||
BUG_ON(atomic_read(&conn->usage)<0);
|
||||
atomic_inc(&conn->usage);
|
||||
//printk("rxrpc_get_conn(%p{u=%d})\n",conn,atomic_read(&conn->usage));
|
||||
}
|
||||
|
||||
extern void rxrpc_put_connection(struct rxrpc_connection *conn);
|
||||
|
||||
extern int rxrpc_conn_receive_call_packet(struct rxrpc_connection *conn,
|
||||
struct rxrpc_call *call,
|
||||
struct rxrpc_message *msg);
|
||||
|
||||
extern void rxrpc_conn_handle_error(struct rxrpc_connection *conn, int local, int errno);
|
||||
|
||||
#endif /* _LINUX_RXRPC_CONNECTION_H */
|
||||
@@ -1,27 +0,0 @@
|
||||
/* krxiod.h: Rx RPC I/O kernel thread interface
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_RXRPC_KRXIOD_H
|
||||
#define _LINUX_RXRPC_KRXIOD_H
|
||||
|
||||
#include <rxrpc/types.h>
|
||||
|
||||
extern int rxrpc_krxiod_init(void);
|
||||
extern void rxrpc_krxiod_kill(void);
|
||||
extern void rxrpc_krxiod_queue_transport(struct rxrpc_transport *trans);
|
||||
extern void rxrpc_krxiod_dequeue_transport(struct rxrpc_transport *trans);
|
||||
extern void rxrpc_krxiod_queue_peer(struct rxrpc_peer *peer);
|
||||
extern void rxrpc_krxiod_dequeue_peer(struct rxrpc_peer *peer);
|
||||
extern void rxrpc_krxiod_clear_peers(struct rxrpc_transport *trans);
|
||||
extern void rxrpc_krxiod_queue_call(struct rxrpc_call *call);
|
||||
extern void rxrpc_krxiod_dequeue_call(struct rxrpc_call *call);
|
||||
|
||||
#endif /* _LINUX_RXRPC_KRXIOD_H */
|
||||
@@ -1,22 +0,0 @@
|
||||
/* krxsecd.h: Rx RPC security kernel thread interface
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_RXRPC_KRXSECD_H
|
||||
#define _LINUX_RXRPC_KRXSECD_H
|
||||
|
||||
#include <rxrpc/types.h>
|
||||
|
||||
extern int rxrpc_krxsecd_init(void);
|
||||
extern void rxrpc_krxsecd_kill(void);
|
||||
extern void rxrpc_krxsecd_clear_transport(struct rxrpc_transport *trans);
|
||||
extern void rxrpc_krxsecd_queue_incoming_call(struct rxrpc_message *msg);
|
||||
|
||||
#endif /* _LINUX_RXRPC_KRXSECD_H */
|
||||
@@ -1,45 +0,0 @@
|
||||
/* krxtimod.h: RxRPC timeout daemon
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_RXRPC_KRXTIMOD_H
|
||||
#define _LINUX_RXRPC_KRXTIMOD_H
|
||||
|
||||
#include <rxrpc/types.h>
|
||||
|
||||
struct rxrpc_timer_ops {
|
||||
/* called when the front of the timer queue has timed out */
|
||||
void (*timed_out)(struct rxrpc_timer *timer);
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* RXRPC timer/timeout record
|
||||
*/
|
||||
struct rxrpc_timer
|
||||
{
|
||||
struct list_head link; /* link in timer queue */
|
||||
unsigned long timo_jif; /* timeout time */
|
||||
const struct rxrpc_timer_ops *ops; /* timeout expiry function */
|
||||
};
|
||||
|
||||
static inline void rxrpc_timer_init(rxrpc_timer_t *timer, const struct rxrpc_timer_ops *ops)
|
||||
{
|
||||
INIT_LIST_HEAD(&timer->link);
|
||||
timer->ops = ops;
|
||||
}
|
||||
|
||||
extern int rxrpc_krxtimod_start(void);
|
||||
extern void rxrpc_krxtimod_kill(void);
|
||||
|
||||
extern void rxrpc_krxtimod_add_timer(rxrpc_timer_t *timer, unsigned long timeout);
|
||||
extern int rxrpc_krxtimod_del_timer(rxrpc_timer_t *timer);
|
||||
|
||||
#endif /* _LINUX_RXRPC_KRXTIMOD_H */
|
||||
@@ -1,71 +0,0 @@
|
||||
/* message.h: Rx message caching
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_RXRPC_MESSAGE_H
|
||||
#define _LINUX_RXRPC_MESSAGE_H
|
||||
|
||||
#include <rxrpc/packet.h>
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* Rx message record
|
||||
*/
|
||||
struct rxrpc_message
|
||||
{
|
||||
atomic_t usage;
|
||||
struct list_head link; /* list link */
|
||||
struct timeval stamp; /* time received or last sent */
|
||||
rxrpc_seq_t seq; /* message sequence number */
|
||||
|
||||
int state; /* the state the message is currently in */
|
||||
#define RXRPC_MSG_PREPARED 0
|
||||
#define RXRPC_MSG_SENT 1
|
||||
#define RXRPC_MSG_ACKED 2 /* provisionally ACK'd */
|
||||
#define RXRPC_MSG_DONE 3 /* definitively ACK'd (msg->seq<ack.firstPacket) */
|
||||
#define RXRPC_MSG_RECEIVED 4
|
||||
#define RXRPC_MSG_ERROR -1
|
||||
char rttdone; /* used for RTT */
|
||||
|
||||
struct rxrpc_transport *trans; /* transport received through */
|
||||
struct rxrpc_connection *conn; /* connection received over */
|
||||
struct sk_buff *pkt; /* received packet */
|
||||
off_t offset; /* offset into pkt of next byte of data */
|
||||
|
||||
struct rxrpc_header hdr; /* message header */
|
||||
|
||||
int dcount; /* data part count */
|
||||
size_t dsize; /* data size */
|
||||
#define RXRPC_MSG_MAX_IOCS 8
|
||||
struct kvec data[RXRPC_MSG_MAX_IOCS]; /* message data */
|
||||
unsigned long dfree; /* bit mask indicating kfree(data[x]) if T */
|
||||
};
|
||||
|
||||
#define rxrpc_get_message(M) do { atomic_inc(&(M)->usage); } while(0)
|
||||
|
||||
extern void __rxrpc_put_message(struct rxrpc_message *msg);
|
||||
static inline void rxrpc_put_message(struct rxrpc_message *msg)
|
||||
{
|
||||
BUG_ON(atomic_read(&msg->usage)<=0);
|
||||
if (atomic_dec_and_test(&msg->usage))
|
||||
__rxrpc_put_message(msg);
|
||||
}
|
||||
|
||||
extern int rxrpc_conn_newmsg(struct rxrpc_connection *conn,
|
||||
struct rxrpc_call *call,
|
||||
uint8_t type,
|
||||
int count,
|
||||
struct kvec *diov,
|
||||
gfp_t alloc_flags,
|
||||
struct rxrpc_message **_msg);
|
||||
|
||||
extern int rxrpc_conn_sendmsg(struct rxrpc_connection *conn, struct rxrpc_message *msg);
|
||||
|
||||
#endif /* _LINUX_RXRPC_MESSAGE_H */
|
||||
@@ -1,6 +1,6 @@
|
||||
/* packet.h: Rx packet layout and definitions
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
@@ -12,21 +12,17 @@
|
||||
#ifndef _LINUX_RXRPC_PACKET_H
|
||||
#define _LINUX_RXRPC_PACKET_H
|
||||
|
||||
#include <rxrpc/types.h>
|
||||
|
||||
#define RXRPC_IPUDP_SIZE 28
|
||||
extern size_t RXRPC_MAX_PACKET_SIZE;
|
||||
#define RXRPC_MAX_PACKET_DATA_SIZE (RXRPC_MAX_PACKET_SIZE - sizeof(struct rxrpc_header))
|
||||
#define RXRPC_LOCAL_PACKET_SIZE RXRPC_MAX_PACKET_SIZE
|
||||
#define RXRPC_REMOTE_PACKET_SIZE (576 - RXRPC_IPUDP_SIZE)
|
||||
typedef u32 rxrpc_seq_t; /* Rx message sequence number */
|
||||
typedef u32 rxrpc_serial_t; /* Rx message serial number */
|
||||
typedef __be32 rxrpc_seq_net_t; /* on-the-wire Rx message sequence number */
|
||||
typedef __be32 rxrpc_serial_net_t; /* on-the-wire Rx message serial number */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* on-the-wire Rx packet header
|
||||
* - all multibyte fields should be in network byte order
|
||||
*/
|
||||
struct rxrpc_header
|
||||
{
|
||||
struct rxrpc_header {
|
||||
__be32 epoch; /* client boot timestamp */
|
||||
|
||||
__be32 cid; /* connection and channel ID */
|
||||
@@ -85,8 +81,7 @@ extern const char *rxrpc_pkts[];
|
||||
* - new__rsvd = j__rsvd
|
||||
* - duplicating all other fields
|
||||
*/
|
||||
struct rxrpc_jumbo_header
|
||||
{
|
||||
struct rxrpc_jumbo_header {
|
||||
uint8_t flags; /* packet flags (as per rxrpc_header) */
|
||||
uint8_t pad;
|
||||
__be16 _rsvd; /* reserved (used by kerberos security as cksum) */
|
||||
@@ -99,8 +94,7 @@ struct rxrpc_jumbo_header
|
||||
* on-the-wire Rx ACK packet data payload
|
||||
* - all multibyte fields should be in network byte order
|
||||
*/
|
||||
struct rxrpc_ackpacket
|
||||
{
|
||||
struct rxrpc_ackpacket {
|
||||
__be16 bufferSpace; /* number of packet buffers available */
|
||||
__be16 maxSkew; /* diff between serno being ACK'd and highest serial no
|
||||
* received */
|
||||
|
||||
@@ -1,82 +0,0 @@
|
||||
/* peer.h: Rx RPC per-transport peer record
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_RXRPC_PEER_H
|
||||
#define _LINUX_RXRPC_PEER_H
|
||||
|
||||
#include <linux/wait.h>
|
||||
#include <rxrpc/types.h>
|
||||
#include <rxrpc/krxtimod.h>
|
||||
|
||||
struct rxrpc_peer_ops
|
||||
{
|
||||
/* peer record being added */
|
||||
int (*adding)(struct rxrpc_peer *peer);
|
||||
|
||||
/* peer record being discarded from graveyard */
|
||||
void (*discarding)(struct rxrpc_peer *peer);
|
||||
|
||||
/* change of epoch detected on connection */
|
||||
void (*change_of_epoch)(struct rxrpc_connection *conn);
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* Rx RPC per-transport peer record
|
||||
* - peers only retain a refcount on the transport when they are active
|
||||
* - peers with refcount==0 are inactive and reside in the transport's graveyard
|
||||
*/
|
||||
struct rxrpc_peer
|
||||
{
|
||||
atomic_t usage;
|
||||
struct rxrpc_peer_ops *ops; /* operations on this peer */
|
||||
struct rxrpc_transport *trans; /* owner transport */
|
||||
struct rxrpc_timer timeout; /* timeout for grave destruction */
|
||||
struct list_head link; /* link in transport's peer list */
|
||||
struct list_head proc_link; /* link in /proc list */
|
||||
rwlock_t conn_idlock; /* lock for connection IDs */
|
||||
struct list_head conn_idlist; /* list of connections granted IDs */
|
||||
uint32_t conn_idcounter; /* connection ID counter */
|
||||
rwlock_t conn_lock; /* lock for active/dead connections */
|
||||
struct list_head conn_active; /* active connections to/from this peer */
|
||||
struct list_head conn_graveyard; /* graveyard for inactive connections */
|
||||
spinlock_t conn_gylock; /* lock for conn_graveyard */
|
||||
wait_queue_head_t conn_gy_waitq; /* wait queue hit when graveyard is empty */
|
||||
atomic_t conn_count; /* number of attached connections */
|
||||
struct in_addr addr; /* remote address */
|
||||
size_t if_mtu; /* interface MTU for this peer */
|
||||
spinlock_t lock; /* access lock */
|
||||
|
||||
void *user; /* application layer data */
|
||||
|
||||
/* calculated RTT cache */
|
||||
#define RXRPC_RTT_CACHE_SIZE 32
|
||||
suseconds_t rtt; /* current RTT estimate (in uS) */
|
||||
unsigned rtt_point; /* next entry at which to insert */
|
||||
unsigned rtt_usage; /* amount of cache actually used */
|
||||
suseconds_t rtt_cache[RXRPC_RTT_CACHE_SIZE]; /* calculated RTT cache */
|
||||
};
|
||||
|
||||
|
||||
extern int rxrpc_peer_lookup(struct rxrpc_transport *trans,
|
||||
__be32 addr,
|
||||
struct rxrpc_peer **_peer);
|
||||
|
||||
static inline void rxrpc_get_peer(struct rxrpc_peer *peer)
|
||||
{
|
||||
BUG_ON(atomic_read(&peer->usage)<0);
|
||||
atomic_inc(&peer->usage);
|
||||
//printk("rxrpc_get_peer(%p{u=%d})\n",peer,atomic_read(&peer->usage));
|
||||
}
|
||||
|
||||
extern void rxrpc_put_peer(struct rxrpc_peer *peer);
|
||||
|
||||
#endif /* _LINUX_RXRPC_PEER_H */
|
||||
@@ -1,36 +0,0 @@
|
||||
/* rx.h: Rx RPC interface
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_RXRPC_RXRPC_H
|
||||
#define _LINUX_RXRPC_RXRPC_H
|
||||
|
||||
#ifdef __KERNEL__
|
||||
|
||||
extern __be32 rxrpc_epoch;
|
||||
|
||||
#ifdef CONFIG_SYSCTL
|
||||
extern int rxrpc_ktrace;
|
||||
extern int rxrpc_kdebug;
|
||||
extern int rxrpc_kproto;
|
||||
extern int rxrpc_knet;
|
||||
#else
|
||||
#define rxrpc_ktrace 0
|
||||
#define rxrpc_kdebug 0
|
||||
#define rxrpc_kproto 0
|
||||
#define rxrpc_knet 0
|
||||
#endif
|
||||
|
||||
extern int rxrpc_sysctl_init(void);
|
||||
extern void rxrpc_sysctl_cleanup(void);
|
||||
|
||||
#endif /* __KERNEL__ */
|
||||
|
||||
#endif /* _LINUX_RXRPC_RXRPC_H */
|
||||
@@ -1,106 +0,0 @@
|
||||
/* transport.h: Rx transport management
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_RXRPC_TRANSPORT_H
|
||||
#define _LINUX_RXRPC_TRANSPORT_H
|
||||
|
||||
#include <rxrpc/types.h>
|
||||
#include <rxrpc/krxiod.h>
|
||||
#include <rxrpc/rxrpc.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/rwsem.h>
|
||||
|
||||
typedef int (*rxrpc_newcall_fnx_t)(struct rxrpc_call *call);
|
||||
|
||||
extern wait_queue_head_t rxrpc_krxiod_wq;
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* Rx operation specification
|
||||
* - tables of these must be sorted by op ID so that they can be binary-chop searched
|
||||
*/
|
||||
struct rxrpc_operation
|
||||
{
|
||||
unsigned id; /* operation ID */
|
||||
size_t asize; /* minimum size of argument block */
|
||||
const char *name; /* name of operation */
|
||||
void *user; /* initial user data */
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* Rx transport service record
|
||||
*/
|
||||
struct rxrpc_service
|
||||
{
|
||||
struct list_head link; /* link in services list on transport */
|
||||
struct module *owner; /* owner module */
|
||||
rxrpc_newcall_fnx_t new_call; /* new call handler function */
|
||||
const char *name; /* name of service */
|
||||
unsigned short service_id; /* Rx service ID */
|
||||
rxrpc_call_attn_func_t attn_func; /* call requires attention callback */
|
||||
rxrpc_call_error_func_t error_func; /* call error callback */
|
||||
rxrpc_call_aemap_func_t aemap_func; /* abort -> errno mapping callback */
|
||||
|
||||
const struct rxrpc_operation *ops_begin; /* beginning of operations table */
|
||||
const struct rxrpc_operation *ops_end; /* end of operations table */
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* Rx transport endpoint record
|
||||
*/
|
||||
struct rxrpc_transport
|
||||
{
|
||||
atomic_t usage;
|
||||
struct socket *socket; /* my UDP socket */
|
||||
struct list_head services; /* services listening on this socket */
|
||||
struct list_head link; /* link in transport list */
|
||||
struct list_head proc_link; /* link in transport proc list */
|
||||
struct list_head krxiodq_link; /* krxiod attention queue link */
|
||||
spinlock_t lock; /* access lock */
|
||||
struct list_head peer_active; /* active peers connected to over this socket */
|
||||
struct list_head peer_graveyard; /* inactive peer list */
|
||||
spinlock_t peer_gylock; /* peer graveyard lock */
|
||||
wait_queue_head_t peer_gy_waitq; /* wait queue hit when peer graveyard is empty */
|
||||
rwlock_t peer_lock; /* peer list access lock */
|
||||
atomic_t peer_count; /* number of peers */
|
||||
struct rxrpc_peer_ops *peer_ops; /* default peer operations */
|
||||
unsigned short port; /* port upon which listening */
|
||||
volatile char error_rcvd; /* T if received ICMP error outstanding */
|
||||
};
|
||||
|
||||
extern int rxrpc_create_transport(unsigned short port,
|
||||
struct rxrpc_transport **_trans);
|
||||
|
||||
static inline void rxrpc_get_transport(struct rxrpc_transport *trans)
|
||||
{
|
||||
BUG_ON(atomic_read(&trans->usage) <= 0);
|
||||
atomic_inc(&trans->usage);
|
||||
//printk("rxrpc_get_transport(%p{u=%d})\n",
|
||||
// trans, atomic_read(&trans->usage));
|
||||
}
|
||||
|
||||
extern void rxrpc_put_transport(struct rxrpc_transport *trans);
|
||||
|
||||
extern int rxrpc_add_service(struct rxrpc_transport *trans,
|
||||
struct rxrpc_service *srv);
|
||||
|
||||
extern void rxrpc_del_service(struct rxrpc_transport *trans,
|
||||
struct rxrpc_service *srv);
|
||||
|
||||
extern void rxrpc_trans_receive_packet(struct rxrpc_transport *trans);
|
||||
|
||||
extern int rxrpc_trans_immediate_abort(struct rxrpc_transport *trans,
|
||||
struct rxrpc_message *msg,
|
||||
int error);
|
||||
|
||||
#endif /* _LINUX_RXRPC_TRANSPORT_H */
|
||||
@@ -1,9 +1,7 @@
|
||||
#
|
||||
# Makefile for Linux kernel Rx RPC
|
||||
# Makefile for Linux kernel RxRPC
|
||||
#
|
||||
|
||||
#CFLAGS += -finstrument-functions
|
||||
|
||||
af-rxrpc-objs := \
|
||||
af_rxrpc.o \
|
||||
ar-accept.o \
|
||||
@@ -29,26 +27,3 @@ endif
|
||||
obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o
|
||||
|
||||
obj-$(CONFIG_RXKAD) += rxkad.o
|
||||
|
||||
#
|
||||
# obsolete RxRPC interface, still used by fs/afs/
|
||||
#
|
||||
rxrpc-objs := \
|
||||
call.o \
|
||||
connection.o \
|
||||
krxiod.o \
|
||||
krxsecd.o \
|
||||
krxtimod.o \
|
||||
main.o \
|
||||
peer.o \
|
||||
rxrpc_syms.o \
|
||||
transport.o
|
||||
|
||||
ifeq ($(CONFIG_PROC_FS),y)
|
||||
rxrpc-objs += proc.o
|
||||
endif
|
||||
ifeq ($(CONFIG_SYSCTL),y)
|
||||
rxrpc-objs += sysctl.o
|
||||
endif
|
||||
|
||||
obj-$(CONFIG_RXRPC) += rxrpc.o
|
||||
|
||||
2277
net/rxrpc/call.c
2277
net/rxrpc/call.c
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,106 +0,0 @@
|
||||
/* internal.h: internal Rx RPC stuff
|
||||
*
|
||||
* Copyright (c) 2002 David Howells (dhowells@redhat.com).
|
||||
*/
|
||||
|
||||
#ifndef RXRPC_INTERNAL_H
|
||||
#define RXRPC_INTERNAL_H
|
||||
|
||||
#include <linux/compiler.h>
|
||||
#include <linux/kernel.h>
|
||||
|
||||
/*
|
||||
* debug accounting
|
||||
*/
|
||||
#if 1
|
||||
#define __RXACCT_DECL(X) X
|
||||
#define __RXACCT(X) do { X; } while(0)
|
||||
#else
|
||||
#define __RXACCT_DECL(X)
|
||||
#define __RXACCT(X) do { } while(0)
|
||||
#endif
|
||||
|
||||
__RXACCT_DECL(extern atomic_t rxrpc_transport_count);
|
||||
__RXACCT_DECL(extern atomic_t rxrpc_peer_count);
|
||||
__RXACCT_DECL(extern atomic_t rxrpc_connection_count);
|
||||
__RXACCT_DECL(extern atomic_t rxrpc_call_count);
|
||||
__RXACCT_DECL(extern atomic_t rxrpc_message_count);
|
||||
|
||||
/*
|
||||
* debug tracing
|
||||
*/
|
||||
#define kenter(FMT, a...) printk("==> %s("FMT")\n",__FUNCTION__ , ##a)
|
||||
#define kleave(FMT, a...) printk("<== %s()"FMT"\n",__FUNCTION__ , ##a)
|
||||
#define kdebug(FMT, a...) printk(" "FMT"\n" , ##a)
|
||||
#define kproto(FMT, a...) printk("### "FMT"\n" , ##a)
|
||||
#define knet(FMT, a...) printk(" "FMT"\n" , ##a)
|
||||
|
||||
#if 0
|
||||
#define _enter(FMT, a...) kenter(FMT , ##a)
|
||||
#define _leave(FMT, a...) kleave(FMT , ##a)
|
||||
#define _debug(FMT, a...) kdebug(FMT , ##a)
|
||||
#define _proto(FMT, a...) kproto(FMT , ##a)
|
||||
#define _net(FMT, a...) knet(FMT , ##a)
|
||||
#else
|
||||
#define _enter(FMT, a...) do { if (rxrpc_ktrace) kenter(FMT , ##a); } while(0)
|
||||
#define _leave(FMT, a...) do { if (rxrpc_ktrace) kleave(FMT , ##a); } while(0)
|
||||
#define _debug(FMT, a...) do { if (rxrpc_kdebug) kdebug(FMT , ##a); } while(0)
|
||||
#define _proto(FMT, a...) do { if (rxrpc_kproto) kproto(FMT , ##a); } while(0)
|
||||
#define _net(FMT, a...) do { if (rxrpc_knet) knet (FMT , ##a); } while(0)
|
||||
#endif
|
||||
|
||||
static inline void rxrpc_discard_my_signals(void)
|
||||
{
|
||||
while (signal_pending(current)) {
|
||||
siginfo_t sinfo;
|
||||
|
||||
spin_lock_irq(¤t->sighand->siglock);
|
||||
dequeue_signal(current, ¤t->blocked, &sinfo);
|
||||
spin_unlock_irq(¤t->sighand->siglock);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* call.c
|
||||
*/
|
||||
extern struct list_head rxrpc_calls;
|
||||
extern struct rw_semaphore rxrpc_calls_sem;
|
||||
|
||||
/*
|
||||
* connection.c
|
||||
*/
|
||||
extern struct list_head rxrpc_conns;
|
||||
extern struct rw_semaphore rxrpc_conns_sem;
|
||||
extern unsigned long rxrpc_conn_timeout;
|
||||
|
||||
extern void rxrpc_conn_clearall(struct rxrpc_peer *peer);
|
||||
|
||||
/*
|
||||
* peer.c
|
||||
*/
|
||||
extern struct list_head rxrpc_peers;
|
||||
extern struct rw_semaphore rxrpc_peers_sem;
|
||||
extern unsigned long rxrpc_peer_timeout;
|
||||
|
||||
extern void rxrpc_peer_calculate_rtt(struct rxrpc_peer *peer,
|
||||
struct rxrpc_message *msg,
|
||||
struct rxrpc_message *resp);
|
||||
|
||||
extern void rxrpc_peer_clearall(struct rxrpc_transport *trans);
|
||||
|
||||
|
||||
/*
|
||||
* proc.c
|
||||
*/
|
||||
#ifdef CONFIG_PROC_FS
|
||||
extern int rxrpc_proc_init(void);
|
||||
extern void rxrpc_proc_cleanup(void);
|
||||
#endif
|
||||
|
||||
/*
|
||||
* transport.c
|
||||
*/
|
||||
extern struct list_head rxrpc_proc_transports;
|
||||
extern struct rw_semaphore rxrpc_proc_transports_sem;
|
||||
|
||||
#endif /* RXRPC_INTERNAL_H */
|
||||
@@ -1,262 +0,0 @@
|
||||
/* krxiod.c: Rx I/O daemon
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#include <linux/sched.h>
|
||||
#include <linux/completion.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/freezer.h>
|
||||
#include <rxrpc/krxiod.h>
|
||||
#include <rxrpc/transport.h>
|
||||
#include <rxrpc/peer.h>
|
||||
#include <rxrpc/call.h>
|
||||
#include "internal.h"
|
||||
|
||||
static DECLARE_WAIT_QUEUE_HEAD(rxrpc_krxiod_sleepq);
|
||||
static DECLARE_COMPLETION(rxrpc_krxiod_dead);
|
||||
|
||||
static atomic_t rxrpc_krxiod_qcount = ATOMIC_INIT(0);
|
||||
|
||||
static LIST_HEAD(rxrpc_krxiod_transportq);
|
||||
static DEFINE_SPINLOCK(rxrpc_krxiod_transportq_lock);
|
||||
|
||||
static LIST_HEAD(rxrpc_krxiod_callq);
|
||||
static DEFINE_SPINLOCK(rxrpc_krxiod_callq_lock);
|
||||
|
||||
static volatile int rxrpc_krxiod_die;
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* Rx I/O daemon
|
||||
*/
|
||||
static int rxrpc_krxiod(void *arg)
|
||||
{
|
||||
DECLARE_WAITQUEUE(krxiod,current);
|
||||
|
||||
printk("Started krxiod %d\n",current->pid);
|
||||
|
||||
daemonize("krxiod");
|
||||
|
||||
/* loop around waiting for work to do */
|
||||
do {
|
||||
/* wait for work or to be told to exit */
|
||||
_debug("### Begin Wait");
|
||||
if (!atomic_read(&rxrpc_krxiod_qcount)) {
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
|
||||
add_wait_queue(&rxrpc_krxiod_sleepq, &krxiod);
|
||||
|
||||
for (;;) {
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
if (atomic_read(&rxrpc_krxiod_qcount) ||
|
||||
rxrpc_krxiod_die ||
|
||||
signal_pending(current))
|
||||
break;
|
||||
|
||||
schedule();
|
||||
}
|
||||
|
||||
remove_wait_queue(&rxrpc_krxiod_sleepq, &krxiod);
|
||||
set_current_state(TASK_RUNNING);
|
||||
}
|
||||
_debug("### End Wait");
|
||||
|
||||
/* do work if been given some to do */
|
||||
_debug("### Begin Work");
|
||||
|
||||
/* see if there's a transport in need of attention */
|
||||
if (!list_empty(&rxrpc_krxiod_transportq)) {
|
||||
struct rxrpc_transport *trans = NULL;
|
||||
|
||||
spin_lock_irq(&rxrpc_krxiod_transportq_lock);
|
||||
|
||||
if (!list_empty(&rxrpc_krxiod_transportq)) {
|
||||
trans = list_entry(
|
||||
rxrpc_krxiod_transportq.next,
|
||||
struct rxrpc_transport,
|
||||
krxiodq_link);
|
||||
|
||||
list_del_init(&trans->krxiodq_link);
|
||||
atomic_dec(&rxrpc_krxiod_qcount);
|
||||
|
||||
/* make sure it hasn't gone away and doesn't go
|
||||
* away */
|
||||
if (atomic_read(&trans->usage)>0)
|
||||
rxrpc_get_transport(trans);
|
||||
else
|
||||
trans = NULL;
|
||||
}
|
||||
|
||||
spin_unlock_irq(&rxrpc_krxiod_transportq_lock);
|
||||
|
||||
if (trans) {
|
||||
rxrpc_trans_receive_packet(trans);
|
||||
rxrpc_put_transport(trans);
|
||||
}
|
||||
}
|
||||
|
||||
/* see if there's a call in need of attention */
|
||||
if (!list_empty(&rxrpc_krxiod_callq)) {
|
||||
struct rxrpc_call *call = NULL;
|
||||
|
||||
spin_lock_irq(&rxrpc_krxiod_callq_lock);
|
||||
|
||||
if (!list_empty(&rxrpc_krxiod_callq)) {
|
||||
call = list_entry(rxrpc_krxiod_callq.next,
|
||||
struct rxrpc_call,
|
||||
rcv_krxiodq_lk);
|
||||
list_del_init(&call->rcv_krxiodq_lk);
|
||||
atomic_dec(&rxrpc_krxiod_qcount);
|
||||
|
||||
/* make sure it hasn't gone away and doesn't go
|
||||
* away */
|
||||
if (atomic_read(&call->usage) > 0) {
|
||||
_debug("@@@ KRXIOD"
|
||||
" Begin Attend Call %p", call);
|
||||
rxrpc_get_call(call);
|
||||
}
|
||||
else {
|
||||
call = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
spin_unlock_irq(&rxrpc_krxiod_callq_lock);
|
||||
|
||||
if (call) {
|
||||
rxrpc_call_do_stuff(call);
|
||||
rxrpc_put_call(call);
|
||||
_debug("@@@ KRXIOD End Attend Call %p", call);
|
||||
}
|
||||
}
|
||||
|
||||
_debug("### End Work");
|
||||
|
||||
try_to_freeze();
|
||||
|
||||
/* discard pending signals */
|
||||
rxrpc_discard_my_signals();
|
||||
|
||||
} while (!rxrpc_krxiod_die);
|
||||
|
||||
/* and that's all */
|
||||
complete_and_exit(&rxrpc_krxiod_dead, 0);
|
||||
|
||||
} /* end rxrpc_krxiod() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* start up a krxiod daemon
|
||||
*/
|
||||
int __init rxrpc_krxiod_init(void)
|
||||
{
|
||||
return kernel_thread(rxrpc_krxiod, NULL, 0);
|
||||
|
||||
} /* end rxrpc_krxiod_init() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* kill the krxiod daemon and wait for it to complete
|
||||
*/
|
||||
void rxrpc_krxiod_kill(void)
|
||||
{
|
||||
rxrpc_krxiod_die = 1;
|
||||
wake_up_all(&rxrpc_krxiod_sleepq);
|
||||
wait_for_completion(&rxrpc_krxiod_dead);
|
||||
|
||||
} /* end rxrpc_krxiod_kill() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* queue a transport for attention by krxiod
|
||||
*/
|
||||
void rxrpc_krxiod_queue_transport(struct rxrpc_transport *trans)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
||||
_enter("");
|
||||
|
||||
if (list_empty(&trans->krxiodq_link)) {
|
||||
spin_lock_irqsave(&rxrpc_krxiod_transportq_lock, flags);
|
||||
|
||||
if (list_empty(&trans->krxiodq_link)) {
|
||||
if (atomic_read(&trans->usage) > 0) {
|
||||
list_add_tail(&trans->krxiodq_link,
|
||||
&rxrpc_krxiod_transportq);
|
||||
atomic_inc(&rxrpc_krxiod_qcount);
|
||||
}
|
||||
}
|
||||
|
||||
spin_unlock_irqrestore(&rxrpc_krxiod_transportq_lock, flags);
|
||||
wake_up_all(&rxrpc_krxiod_sleepq);
|
||||
}
|
||||
|
||||
_leave("");
|
||||
|
||||
} /* end rxrpc_krxiod_queue_transport() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* dequeue a transport from krxiod's attention queue
|
||||
*/
|
||||
void rxrpc_krxiod_dequeue_transport(struct rxrpc_transport *trans)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
||||
_enter("");
|
||||
|
||||
spin_lock_irqsave(&rxrpc_krxiod_transportq_lock, flags);
|
||||
if (!list_empty(&trans->krxiodq_link)) {
|
||||
list_del_init(&trans->krxiodq_link);
|
||||
atomic_dec(&rxrpc_krxiod_qcount);
|
||||
}
|
||||
spin_unlock_irqrestore(&rxrpc_krxiod_transportq_lock, flags);
|
||||
|
||||
_leave("");
|
||||
|
||||
} /* end rxrpc_krxiod_dequeue_transport() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* queue a call for attention by krxiod
|
||||
*/
|
||||
void rxrpc_krxiod_queue_call(struct rxrpc_call *call)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
||||
if (list_empty(&call->rcv_krxiodq_lk)) {
|
||||
spin_lock_irqsave(&rxrpc_krxiod_callq_lock, flags);
|
||||
if (atomic_read(&call->usage) > 0) {
|
||||
list_add_tail(&call->rcv_krxiodq_lk,
|
||||
&rxrpc_krxiod_callq);
|
||||
atomic_inc(&rxrpc_krxiod_qcount);
|
||||
}
|
||||
spin_unlock_irqrestore(&rxrpc_krxiod_callq_lock, flags);
|
||||
}
|
||||
wake_up_all(&rxrpc_krxiod_sleepq);
|
||||
|
||||
} /* end rxrpc_krxiod_queue_call() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* dequeue a call from krxiod's attention queue
|
||||
*/
|
||||
void rxrpc_krxiod_dequeue_call(struct rxrpc_call *call)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&rxrpc_krxiod_callq_lock, flags);
|
||||
if (!list_empty(&call->rcv_krxiodq_lk)) {
|
||||
list_del_init(&call->rcv_krxiodq_lk);
|
||||
atomic_dec(&rxrpc_krxiod_qcount);
|
||||
}
|
||||
spin_unlock_irqrestore(&rxrpc_krxiod_callq_lock, flags);
|
||||
|
||||
} /* end rxrpc_krxiod_dequeue_call() */
|
||||
@@ -1,270 +0,0 @@
|
||||
/* krxsecd.c: Rx security daemon
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This daemon deals with:
|
||||
* - consulting the application as to whether inbound peers and calls should be authorised
|
||||
* - generating security challenges for inbound connections
|
||||
* - responding to security challenges on outbound connections
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/completion.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/init.h>
|
||||
#include <rxrpc/krxsecd.h>
|
||||
#include <rxrpc/transport.h>
|
||||
#include <rxrpc/connection.h>
|
||||
#include <rxrpc/message.h>
|
||||
#include <rxrpc/peer.h>
|
||||
#include <rxrpc/call.h>
|
||||
#include <linux/udp.h>
|
||||
#include <linux/ip.h>
|
||||
#include <linux/freezer.h>
|
||||
#include <net/sock.h>
|
||||
#include "internal.h"
|
||||
|
||||
static DECLARE_WAIT_QUEUE_HEAD(rxrpc_krxsecd_sleepq);
|
||||
static DECLARE_COMPLETION(rxrpc_krxsecd_dead);
|
||||
static volatile int rxrpc_krxsecd_die;
|
||||
|
||||
static atomic_t rxrpc_krxsecd_qcount;
|
||||
|
||||
/* queue of unprocessed inbound messages with seqno #1 and
|
||||
* RXRPC_CLIENT_INITIATED flag set */
|
||||
static LIST_HEAD(rxrpc_krxsecd_initmsgq);
|
||||
static DEFINE_SPINLOCK(rxrpc_krxsecd_initmsgq_lock);
|
||||
|
||||
static void rxrpc_krxsecd_process_incoming_call(struct rxrpc_message *msg);
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* Rx security daemon
|
||||
*/
|
||||
static int rxrpc_krxsecd(void *arg)
|
||||
{
|
||||
DECLARE_WAITQUEUE(krxsecd, current);
|
||||
|
||||
int die;
|
||||
|
||||
printk("Started krxsecd %d\n", current->pid);
|
||||
|
||||
daemonize("krxsecd");
|
||||
|
||||
/* loop around waiting for work to do */
|
||||
do {
|
||||
/* wait for work or to be told to exit */
|
||||
_debug("### Begin Wait");
|
||||
if (!atomic_read(&rxrpc_krxsecd_qcount)) {
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
|
||||
add_wait_queue(&rxrpc_krxsecd_sleepq, &krxsecd);
|
||||
|
||||
for (;;) {
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
if (atomic_read(&rxrpc_krxsecd_qcount) ||
|
||||
rxrpc_krxsecd_die ||
|
||||
signal_pending(current))
|
||||
break;
|
||||
|
||||
schedule();
|
||||
}
|
||||
|
||||
remove_wait_queue(&rxrpc_krxsecd_sleepq, &krxsecd);
|
||||
set_current_state(TASK_RUNNING);
|
||||
}
|
||||
die = rxrpc_krxsecd_die;
|
||||
_debug("### End Wait");
|
||||
|
||||
/* see if there're incoming calls in need of authenticating */
|
||||
_debug("### Begin Inbound Calls");
|
||||
|
||||
if (!list_empty(&rxrpc_krxsecd_initmsgq)) {
|
||||
struct rxrpc_message *msg = NULL;
|
||||
|
||||
spin_lock(&rxrpc_krxsecd_initmsgq_lock);
|
||||
|
||||
if (!list_empty(&rxrpc_krxsecd_initmsgq)) {
|
||||
msg = list_entry(rxrpc_krxsecd_initmsgq.next,
|
||||
struct rxrpc_message, link);
|
||||
list_del_init(&msg->link);
|
||||
atomic_dec(&rxrpc_krxsecd_qcount);
|
||||
}
|
||||
|
||||
spin_unlock(&rxrpc_krxsecd_initmsgq_lock);
|
||||
|
||||
if (msg) {
|
||||
rxrpc_krxsecd_process_incoming_call(msg);
|
||||
rxrpc_put_message(msg);
|
||||
}
|
||||
}
|
||||
|
||||
_debug("### End Inbound Calls");
|
||||
|
||||
try_to_freeze();
|
||||
|
||||
/* discard pending signals */
|
||||
rxrpc_discard_my_signals();
|
||||
|
||||
} while (!die);
|
||||
|
||||
/* and that's all */
|
||||
complete_and_exit(&rxrpc_krxsecd_dead, 0);
|
||||
|
||||
} /* end rxrpc_krxsecd() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* start up a krxsecd daemon
|
||||
*/
|
||||
int __init rxrpc_krxsecd_init(void)
|
||||
{
|
||||
return kernel_thread(rxrpc_krxsecd, NULL, 0);
|
||||
|
||||
} /* end rxrpc_krxsecd_init() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* kill the krxsecd daemon and wait for it to complete
|
||||
*/
|
||||
void rxrpc_krxsecd_kill(void)
|
||||
{
|
||||
rxrpc_krxsecd_die = 1;
|
||||
wake_up_all(&rxrpc_krxsecd_sleepq);
|
||||
wait_for_completion(&rxrpc_krxsecd_dead);
|
||||
|
||||
} /* end rxrpc_krxsecd_kill() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* clear all pending incoming calls for the specified transport
|
||||
*/
|
||||
void rxrpc_krxsecd_clear_transport(struct rxrpc_transport *trans)
|
||||
{
|
||||
LIST_HEAD(tmp);
|
||||
|
||||
struct rxrpc_message *msg;
|
||||
struct list_head *_p, *_n;
|
||||
|
||||
_enter("%p",trans);
|
||||
|
||||
/* move all the messages for this transport onto a temp list */
|
||||
spin_lock(&rxrpc_krxsecd_initmsgq_lock);
|
||||
|
||||
list_for_each_safe(_p, _n, &rxrpc_krxsecd_initmsgq) {
|
||||
msg = list_entry(_p, struct rxrpc_message, link);
|
||||
if (msg->trans == trans) {
|
||||
list_move_tail(&msg->link, &tmp);
|
||||
atomic_dec(&rxrpc_krxsecd_qcount);
|
||||
}
|
||||
}
|
||||
|
||||
spin_unlock(&rxrpc_krxsecd_initmsgq_lock);
|
||||
|
||||
/* zap all messages on the temp list */
|
||||
while (!list_empty(&tmp)) {
|
||||
msg = list_entry(tmp.next, struct rxrpc_message, link);
|
||||
list_del_init(&msg->link);
|
||||
rxrpc_put_message(msg);
|
||||
}
|
||||
|
||||
_leave("");
|
||||
} /* end rxrpc_krxsecd_clear_transport() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* queue a message on the incoming calls list
|
||||
*/
|
||||
void rxrpc_krxsecd_queue_incoming_call(struct rxrpc_message *msg)
|
||||
{
|
||||
_enter("%p", msg);
|
||||
|
||||
/* queue for processing by krxsecd */
|
||||
spin_lock(&rxrpc_krxsecd_initmsgq_lock);
|
||||
|
||||
if (!rxrpc_krxsecd_die) {
|
||||
rxrpc_get_message(msg);
|
||||
list_add_tail(&msg->link, &rxrpc_krxsecd_initmsgq);
|
||||
atomic_inc(&rxrpc_krxsecd_qcount);
|
||||
}
|
||||
|
||||
spin_unlock(&rxrpc_krxsecd_initmsgq_lock);
|
||||
|
||||
wake_up(&rxrpc_krxsecd_sleepq);
|
||||
|
||||
_leave("");
|
||||
} /* end rxrpc_krxsecd_queue_incoming_call() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* process the initial message of an incoming call
|
||||
*/
|
||||
void rxrpc_krxsecd_process_incoming_call(struct rxrpc_message *msg)
|
||||
{
|
||||
struct rxrpc_transport *trans = msg->trans;
|
||||
struct rxrpc_service *srv;
|
||||
struct rxrpc_call *call;
|
||||
struct list_head *_p;
|
||||
unsigned short sid;
|
||||
int ret;
|
||||
|
||||
_enter("%p{tr=%p}", msg, trans);
|
||||
|
||||
ret = rxrpc_incoming_call(msg->conn, msg, &call);
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
|
||||
/* find the matching service on the transport */
|
||||
sid = ntohs(msg->hdr.serviceId);
|
||||
srv = NULL;
|
||||
|
||||
spin_lock(&trans->lock);
|
||||
list_for_each(_p, &trans->services) {
|
||||
srv = list_entry(_p, struct rxrpc_service, link);
|
||||
if (srv->service_id == sid && try_module_get(srv->owner)) {
|
||||
/* found a match (made sure it won't vanish) */
|
||||
_debug("found service '%s'", srv->name);
|
||||
call->owner = srv->owner;
|
||||
break;
|
||||
}
|
||||
}
|
||||
spin_unlock(&trans->lock);
|
||||
|
||||
/* report the new connection
|
||||
* - the func must inc the call's usage count to keep it
|
||||
*/
|
||||
ret = -ENOENT;
|
||||
if (_p != &trans->services) {
|
||||
/* attempt to accept the call */
|
||||
call->conn->service = srv;
|
||||
call->app_attn_func = srv->attn_func;
|
||||
call->app_error_func = srv->error_func;
|
||||
call->app_aemap_func = srv->aemap_func;
|
||||
|
||||
ret = srv->new_call(call);
|
||||
|
||||
/* send an abort if an error occurred */
|
||||
if (ret < 0) {
|
||||
rxrpc_call_abort(call, ret);
|
||||
}
|
||||
else {
|
||||
/* formally receive and ACK the new packet */
|
||||
ret = rxrpc_conn_receive_call_packet(call->conn,
|
||||
call, msg);
|
||||
}
|
||||
}
|
||||
|
||||
rxrpc_put_call(call);
|
||||
out:
|
||||
if (ret < 0)
|
||||
rxrpc_trans_immediate_abort(trans, msg, ret);
|
||||
|
||||
_leave(" (%d)", ret);
|
||||
} /* end rxrpc_krxsecd_process_incoming_call() */
|
||||
@@ -1,204 +0,0 @@
|
||||
/* krxtimod.c: RXRPC timeout daemon
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/completion.h>
|
||||
#include <linux/freezer.h>
|
||||
#include <rxrpc/rxrpc.h>
|
||||
#include <rxrpc/krxtimod.h>
|
||||
#include <asm/errno.h>
|
||||
#include "internal.h"
|
||||
|
||||
static DECLARE_COMPLETION(krxtimod_alive);
|
||||
static DECLARE_COMPLETION(krxtimod_dead);
|
||||
static DECLARE_WAIT_QUEUE_HEAD(krxtimod_sleepq);
|
||||
static int krxtimod_die;
|
||||
|
||||
static LIST_HEAD(krxtimod_list);
|
||||
static DEFINE_SPINLOCK(krxtimod_lock);
|
||||
|
||||
static int krxtimod(void *arg);
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* start the timeout daemon
|
||||
*/
|
||||
int rxrpc_krxtimod_start(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = kernel_thread(krxtimod, NULL, 0);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
wait_for_completion(&krxtimod_alive);
|
||||
|
||||
return ret;
|
||||
} /* end rxrpc_krxtimod_start() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* stop the timeout daemon
|
||||
*/
|
||||
void rxrpc_krxtimod_kill(void)
|
||||
{
|
||||
/* get rid of my daemon */
|
||||
krxtimod_die = 1;
|
||||
wake_up(&krxtimod_sleepq);
|
||||
wait_for_completion(&krxtimod_dead);
|
||||
|
||||
} /* end rxrpc_krxtimod_kill() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* timeout processing daemon
|
||||
*/
|
||||
static int krxtimod(void *arg)
|
||||
{
|
||||
DECLARE_WAITQUEUE(myself, current);
|
||||
|
||||
rxrpc_timer_t *timer;
|
||||
|
||||
printk("Started krxtimod %d\n", current->pid);
|
||||
|
||||
daemonize("krxtimod");
|
||||
|
||||
complete(&krxtimod_alive);
|
||||
|
||||
/* loop around looking for things to attend to */
|
||||
loop:
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
add_wait_queue(&krxtimod_sleepq, &myself);
|
||||
|
||||
for (;;) {
|
||||
unsigned long jif;
|
||||
long timeout;
|
||||
|
||||
/* deal with the server being asked to die */
|
||||
if (krxtimod_die) {
|
||||
remove_wait_queue(&krxtimod_sleepq, &myself);
|
||||
_leave("");
|
||||
complete_and_exit(&krxtimod_dead, 0);
|
||||
}
|
||||
|
||||
try_to_freeze();
|
||||
|
||||
/* discard pending signals */
|
||||
rxrpc_discard_my_signals();
|
||||
|
||||
/* work out the time to elapse before the next event */
|
||||
spin_lock(&krxtimod_lock);
|
||||
if (list_empty(&krxtimod_list)) {
|
||||
timeout = MAX_SCHEDULE_TIMEOUT;
|
||||
}
|
||||
else {
|
||||
timer = list_entry(krxtimod_list.next,
|
||||
rxrpc_timer_t, link);
|
||||
timeout = timer->timo_jif;
|
||||
jif = jiffies;
|
||||
|
||||
if (time_before_eq((unsigned long) timeout, jif))
|
||||
goto immediate;
|
||||
|
||||
else {
|
||||
timeout = (long) timeout - (long) jiffies;
|
||||
}
|
||||
}
|
||||
spin_unlock(&krxtimod_lock);
|
||||
|
||||
schedule_timeout(timeout);
|
||||
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
}
|
||||
|
||||
/* the thing on the front of the queue needs processing
|
||||
* - we come here with the lock held and timer pointing to the expired
|
||||
* entry
|
||||
*/
|
||||
immediate:
|
||||
remove_wait_queue(&krxtimod_sleepq, &myself);
|
||||
set_current_state(TASK_RUNNING);
|
||||
|
||||
_debug("@@@ Begin Timeout of %p", timer);
|
||||
|
||||
/* dequeue the timer */
|
||||
list_del_init(&timer->link);
|
||||
spin_unlock(&krxtimod_lock);
|
||||
|
||||
/* call the timeout function */
|
||||
timer->ops->timed_out(timer);
|
||||
|
||||
_debug("@@@ End Timeout");
|
||||
goto loop;
|
||||
|
||||
} /* end krxtimod() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* (re-)queue a timer
|
||||
*/
|
||||
void rxrpc_krxtimod_add_timer(rxrpc_timer_t *timer, unsigned long timeout)
|
||||
{
|
||||
struct list_head *_p;
|
||||
rxrpc_timer_t *ptimer;
|
||||
|
||||
_enter("%p,%lu", timer, timeout);
|
||||
|
||||
spin_lock(&krxtimod_lock);
|
||||
|
||||
list_del(&timer->link);
|
||||
|
||||
/* the timer was deferred or reset - put it back in the queue at the
|
||||
* right place */
|
||||
timer->timo_jif = jiffies + timeout;
|
||||
|
||||
list_for_each(_p, &krxtimod_list) {
|
||||
ptimer = list_entry(_p, rxrpc_timer_t, link);
|
||||
if (time_before(timer->timo_jif, ptimer->timo_jif))
|
||||
break;
|
||||
}
|
||||
|
||||
list_add_tail(&timer->link, _p); /* insert before stopping point */
|
||||
|
||||
spin_unlock(&krxtimod_lock);
|
||||
|
||||
wake_up(&krxtimod_sleepq);
|
||||
|
||||
_leave("");
|
||||
} /* end rxrpc_krxtimod_add_timer() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* dequeue a timer
|
||||
* - returns 0 if the timer was deleted or -ENOENT if it wasn't queued
|
||||
*/
|
||||
int rxrpc_krxtimod_del_timer(rxrpc_timer_t *timer)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
_enter("%p", timer);
|
||||
|
||||
spin_lock(&krxtimod_lock);
|
||||
|
||||
if (list_empty(&timer->link))
|
||||
ret = -ENOENT;
|
||||
else
|
||||
list_del_init(&timer->link);
|
||||
|
||||
spin_unlock(&krxtimod_lock);
|
||||
|
||||
wake_up(&krxtimod_sleepq);
|
||||
|
||||
_leave(" = %d", ret);
|
||||
return ret;
|
||||
} /* end rxrpc_krxtimod_del_timer() */
|
||||
180
net/rxrpc/main.c
180
net/rxrpc/main.c
@@ -1,180 +0,0 @@
|
||||
/* main.c: Rx RPC interface
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/sched.h>
|
||||
#include <rxrpc/rxrpc.h>
|
||||
#include <rxrpc/krxiod.h>
|
||||
#include <rxrpc/krxsecd.h>
|
||||
#include <rxrpc/krxtimod.h>
|
||||
#include <rxrpc/transport.h>
|
||||
#include <rxrpc/connection.h>
|
||||
#include <rxrpc/call.h>
|
||||
#include <rxrpc/message.h>
|
||||
#include "internal.h"
|
||||
|
||||
MODULE_DESCRIPTION("Rx RPC implementation");
|
||||
MODULE_AUTHOR("Red Hat, Inc.");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
__be32 rxrpc_epoch;
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* initialise the Rx module
|
||||
*/
|
||||
static int __init rxrpc_initialise(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
/* my epoch value */
|
||||
rxrpc_epoch = htonl(get_seconds());
|
||||
|
||||
/* register the /proc interface */
|
||||
#ifdef CONFIG_PROC_FS
|
||||
ret = rxrpc_proc_init();
|
||||
if (ret<0)
|
||||
return ret;
|
||||
#endif
|
||||
|
||||
/* register the sysctl files */
|
||||
#ifdef CONFIG_SYSCTL
|
||||
ret = rxrpc_sysctl_init();
|
||||
if (ret<0)
|
||||
goto error_proc;
|
||||
#endif
|
||||
|
||||
/* start the krxtimod daemon */
|
||||
ret = rxrpc_krxtimod_start();
|
||||
if (ret<0)
|
||||
goto error_sysctl;
|
||||
|
||||
/* start the krxiod daemon */
|
||||
ret = rxrpc_krxiod_init();
|
||||
if (ret<0)
|
||||
goto error_krxtimod;
|
||||
|
||||
/* start the krxsecd daemon */
|
||||
ret = rxrpc_krxsecd_init();
|
||||
if (ret<0)
|
||||
goto error_krxiod;
|
||||
|
||||
kdebug("\n\n");
|
||||
|
||||
return 0;
|
||||
|
||||
error_krxiod:
|
||||
rxrpc_krxiod_kill();
|
||||
error_krxtimod:
|
||||
rxrpc_krxtimod_kill();
|
||||
error_sysctl:
|
||||
#ifdef CONFIG_SYSCTL
|
||||
rxrpc_sysctl_cleanup();
|
||||
error_proc:
|
||||
#endif
|
||||
#ifdef CONFIG_PROC_FS
|
||||
rxrpc_proc_cleanup();
|
||||
#endif
|
||||
return ret;
|
||||
} /* end rxrpc_initialise() */
|
||||
|
||||
module_init(rxrpc_initialise);
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* clean up the Rx module
|
||||
*/
|
||||
static void __exit rxrpc_cleanup(void)
|
||||
{
|
||||
kenter("");
|
||||
|
||||
__RXACCT(printk("Outstanding Messages : %d\n",
|
||||
atomic_read(&rxrpc_message_count)));
|
||||
__RXACCT(printk("Outstanding Calls : %d\n",
|
||||
atomic_read(&rxrpc_call_count)));
|
||||
__RXACCT(printk("Outstanding Connections: %d\n",
|
||||
atomic_read(&rxrpc_connection_count)));
|
||||
__RXACCT(printk("Outstanding Peers : %d\n",
|
||||
atomic_read(&rxrpc_peer_count)));
|
||||
__RXACCT(printk("Outstanding Transports : %d\n",
|
||||
atomic_read(&rxrpc_transport_count)));
|
||||
|
||||
rxrpc_krxsecd_kill();
|
||||
rxrpc_krxiod_kill();
|
||||
rxrpc_krxtimod_kill();
|
||||
#ifdef CONFIG_SYSCTL
|
||||
rxrpc_sysctl_cleanup();
|
||||
#endif
|
||||
#ifdef CONFIG_PROC_FS
|
||||
rxrpc_proc_cleanup();
|
||||
#endif
|
||||
|
||||
__RXACCT(printk("Outstanding Messages : %d\n",
|
||||
atomic_read(&rxrpc_message_count)));
|
||||
__RXACCT(printk("Outstanding Calls : %d\n",
|
||||
atomic_read(&rxrpc_call_count)));
|
||||
__RXACCT(printk("Outstanding Connections: %d\n",
|
||||
atomic_read(&rxrpc_connection_count)));
|
||||
__RXACCT(printk("Outstanding Peers : %d\n",
|
||||
atomic_read(&rxrpc_peer_count)));
|
||||
__RXACCT(printk("Outstanding Transports : %d\n",
|
||||
atomic_read(&rxrpc_transport_count)));
|
||||
|
||||
kleave("");
|
||||
} /* end rxrpc_cleanup() */
|
||||
|
||||
module_exit(rxrpc_cleanup);
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* clear the dead space between task_struct and kernel stack
|
||||
* - called by supplying -finstrument-functions to gcc
|
||||
*/
|
||||
#if 0
|
||||
void __cyg_profile_func_enter (void *this_fn, void *call_site)
|
||||
__attribute__((no_instrument_function));
|
||||
|
||||
void __cyg_profile_func_enter (void *this_fn, void *call_site)
|
||||
{
|
||||
asm volatile(" movl %%esp,%%edi \n"
|
||||
" andl %0,%%edi \n"
|
||||
" addl %1,%%edi \n"
|
||||
" movl %%esp,%%ecx \n"
|
||||
" subl %%edi,%%ecx \n"
|
||||
" shrl $2,%%ecx \n"
|
||||
" movl $0xedededed,%%eax \n"
|
||||
" rep stosl \n"
|
||||
:
|
||||
: "i"(~(THREAD_SIZE-1)), "i"(sizeof(struct thread_info))
|
||||
: "eax", "ecx", "edi", "memory", "cc"
|
||||
);
|
||||
}
|
||||
|
||||
void __cyg_profile_func_exit(void *this_fn, void *call_site)
|
||||
__attribute__((no_instrument_function));
|
||||
|
||||
void __cyg_profile_func_exit(void *this_fn, void *call_site)
|
||||
{
|
||||
asm volatile(" movl %%esp,%%edi \n"
|
||||
" andl %0,%%edi \n"
|
||||
" addl %1,%%edi \n"
|
||||
" movl %%esp,%%ecx \n"
|
||||
" subl %%edi,%%ecx \n"
|
||||
" shrl $2,%%ecx \n"
|
||||
" movl $0xdadadada,%%eax \n"
|
||||
" rep stosl \n"
|
||||
:
|
||||
: "i"(~(THREAD_SIZE-1)), "i"(sizeof(struct thread_info))
|
||||
: "eax", "ecx", "edi", "memory", "cc"
|
||||
);
|
||||
}
|
||||
#endif
|
||||
398
net/rxrpc/peer.c
398
net/rxrpc/peer.c
@@ -1,398 +0,0 @@
|
||||
/* peer.c: Rx RPC peer management
|
||||
*
|
||||
* Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
|
||||
* Written by David Howells (dhowells@redhat.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
|
||||
#include <linux/sched.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/module.h>
|
||||
#include <rxrpc/rxrpc.h>
|
||||
#include <rxrpc/transport.h>
|
||||
#include <rxrpc/peer.h>
|
||||
#include <rxrpc/connection.h>
|
||||
#include <rxrpc/call.h>
|
||||
#include <rxrpc/message.h>
|
||||
#include <linux/udp.h>
|
||||
#include <linux/ip.h>
|
||||
#include <net/sock.h>
|
||||
#include <asm/uaccess.h>
|
||||
#include <asm/div64.h>
|
||||
#include "internal.h"
|
||||
|
||||
__RXACCT_DECL(atomic_t rxrpc_peer_count);
|
||||
LIST_HEAD(rxrpc_peers);
|
||||
DECLARE_RWSEM(rxrpc_peers_sem);
|
||||
unsigned long rxrpc_peer_timeout = 12 * 60 * 60;
|
||||
|
||||
static void rxrpc_peer_do_timeout(struct rxrpc_peer *peer);
|
||||
|
||||
static void __rxrpc_peer_timeout(rxrpc_timer_t *timer)
|
||||
{
|
||||
struct rxrpc_peer *peer =
|
||||
list_entry(timer, struct rxrpc_peer, timeout);
|
||||
|
||||
_debug("Rx PEER TIMEOUT [%p{u=%d}]", peer, atomic_read(&peer->usage));
|
||||
|
||||
rxrpc_peer_do_timeout(peer);
|
||||
}
|
||||
|
||||
static const struct rxrpc_timer_ops rxrpc_peer_timer_ops = {
|
||||
.timed_out = __rxrpc_peer_timeout,
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* create a peer record
|
||||
*/
|
||||
static int __rxrpc_create_peer(struct rxrpc_transport *trans, __be32 addr,
|
||||
struct rxrpc_peer **_peer)
|
||||
{
|
||||
struct rxrpc_peer *peer;
|
||||
|
||||
_enter("%p,%08x", trans, ntohl(addr));
|
||||
|
||||
/* allocate and initialise a peer record */
|
||||
peer = kzalloc(sizeof(struct rxrpc_peer), GFP_KERNEL);
|
||||
if (!peer) {
|
||||
_leave(" = -ENOMEM");
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
atomic_set(&peer->usage, 1);
|
||||
|
||||
INIT_LIST_HEAD(&peer->link);
|
||||
INIT_LIST_HEAD(&peer->proc_link);
|
||||
INIT_LIST_HEAD(&peer->conn_idlist);
|
||||
INIT_LIST_HEAD(&peer->conn_active);
|
||||
INIT_LIST_HEAD(&peer->conn_graveyard);
|
||||
spin_lock_init(&peer->conn_gylock);
|
||||
init_waitqueue_head(&peer->conn_gy_waitq);
|
||||
rwlock_init(&peer->conn_idlock);
|
||||
rwlock_init(&peer->conn_lock);
|
||||
atomic_set(&peer->conn_count, 0);
|
||||
spin_lock_init(&peer->lock);
|
||||
rxrpc_timer_init(&peer->timeout, &rxrpc_peer_timer_ops);
|
||||
|
||||
peer->addr.s_addr = addr;
|
||||
|
||||
peer->trans = trans;
|
||||
peer->ops = trans->peer_ops;
|
||||
|
||||
__RXACCT(atomic_inc(&rxrpc_peer_count));
|
||||
*_peer = peer;
|
||||
_leave(" = 0 (%p)", peer);
|
||||
|
||||
return 0;
|
||||
} /* end __rxrpc_create_peer() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* find a peer record on the specified transport
|
||||
* - returns (if successful) with peer record usage incremented
|
||||
* - resurrects it from the graveyard if found there
|
||||
*/
|
||||
int rxrpc_peer_lookup(struct rxrpc_transport *trans, __be32 addr,
|
||||
struct rxrpc_peer **_peer)
|
||||
{
|
||||
struct rxrpc_peer *peer, *candidate = NULL;
|
||||
struct list_head *_p;
|
||||
int ret;
|
||||
|
||||
_enter("%p{%hu},%08x", trans, trans->port, ntohl(addr));
|
||||
|
||||
/* [common case] search the transport's active list first */
|
||||
read_lock(&trans->peer_lock);
|
||||
list_for_each(_p, &trans->peer_active) {
|
||||
peer = list_entry(_p, struct rxrpc_peer, link);
|
||||
if (peer->addr.s_addr == addr)
|
||||
goto found_active;
|
||||
}
|
||||
read_unlock(&trans->peer_lock);
|
||||
|
||||
/* [uncommon case] not active - create a candidate for a new record */
|
||||
ret = __rxrpc_create_peer(trans, addr, &candidate);
|
||||
if (ret < 0) {
|
||||
_leave(" = %d", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* search the active list again, just in case it appeared whilst we
|
||||
* were busy */
|
||||
write_lock(&trans->peer_lock);
|
||||
list_for_each(_p, &trans->peer_active) {
|
||||
peer = list_entry(_p, struct rxrpc_peer, link);
|
||||
if (peer->addr.s_addr == addr)
|
||||
goto found_active_second_chance;
|
||||
}
|
||||
|
||||
/* search the transport's graveyard list */
|
||||
spin_lock(&trans->peer_gylock);
|
||||
list_for_each(_p, &trans->peer_graveyard) {
|
||||
peer = list_entry(_p, struct rxrpc_peer, link);
|
||||
if (peer->addr.s_addr == addr)
|
||||
goto found_in_graveyard;
|
||||
}
|
||||
spin_unlock(&trans->peer_gylock);
|
||||
|
||||
/* we can now add the new candidate to the list
|
||||
* - tell the application layer that this peer has been added
|
||||
*/
|
||||
rxrpc_get_transport(trans);
|
||||
peer = candidate;
|
||||
candidate = NULL;
|
||||
|
||||
if (peer->ops && peer->ops->adding) {
|
||||
ret = peer->ops->adding(peer);
|
||||
if (ret < 0) {
|
||||
write_unlock(&trans->peer_lock);
|
||||
__RXACCT(atomic_dec(&rxrpc_peer_count));
|
||||
kfree(peer);
|
||||
rxrpc_put_transport(trans);
|
||||
_leave(" = %d", ret);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
atomic_inc(&trans->peer_count);
|
||||
|
||||
make_active:
|
||||
list_add_tail(&peer->link, &trans->peer_active);
|
||||
|
||||
success_uwfree:
|
||||
write_unlock(&trans->peer_lock);
|
||||
|
||||
if (candidate) {
|
||||
__RXACCT(atomic_dec(&rxrpc_peer_count));
|
||||
kfree(candidate);
|
||||
}
|
||||
|
||||
if (list_empty(&peer->proc_link)) {
|
||||
down_write(&rxrpc_peers_sem);
|
||||
list_add_tail(&peer->proc_link, &rxrpc_peers);
|
||||
up_write(&rxrpc_peers_sem);
|
||||
}
|
||||
|
||||
success:
|
||||
*_peer = peer;
|
||||
|
||||
_leave(" = 0 (%p{u=%d cc=%d})",
|
||||
peer,
|
||||
atomic_read(&peer->usage),
|
||||
atomic_read(&peer->conn_count));
|
||||
return 0;
|
||||
|
||||
/* handle the peer being found in the active list straight off */
|
||||
found_active:
|
||||
rxrpc_get_peer(peer);
|
||||
read_unlock(&trans->peer_lock);
|
||||
goto success;
|
||||
|
||||
/* handle resurrecting a peer from the graveyard */
|
||||
found_in_graveyard:
|
||||
rxrpc_get_peer(peer);
|
||||
rxrpc_get_transport(peer->trans);
|
||||
rxrpc_krxtimod_del_timer(&peer->timeout);
|
||||
list_del_init(&peer->link);
|
||||
spin_unlock(&trans->peer_gylock);
|
||||
goto make_active;
|
||||
|
||||
/* handle finding the peer on the second time through the active
|
||||
* list */
|
||||
found_active_second_chance:
|
||||
rxrpc_get_peer(peer);
|
||||
goto success_uwfree;
|
||||
|
||||
} /* end rxrpc_peer_lookup() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* finish with a peer record
|
||||
* - it gets sent to the graveyard from where it can be resurrected or timed
|
||||
* out
|
||||
*/
|
||||
void rxrpc_put_peer(struct rxrpc_peer *peer)
|
||||
{
|
||||
struct rxrpc_transport *trans = peer->trans;
|
||||
|
||||
_enter("%p{cc=%d a=%08x}",
|
||||
peer,
|
||||
atomic_read(&peer->conn_count),
|
||||
ntohl(peer->addr.s_addr));
|
||||
|
||||
/* sanity check */
|
||||
if (atomic_read(&peer->usage) <= 0)
|
||||
BUG();
|
||||
|
||||
write_lock(&trans->peer_lock);
|
||||
spin_lock(&trans->peer_gylock);
|
||||
if (likely(!atomic_dec_and_test(&peer->usage))) {
|
||||
spin_unlock(&trans->peer_gylock);
|
||||
write_unlock(&trans->peer_lock);
|
||||
_leave("");
|
||||
return;
|
||||
}
|
||||
|
||||
/* move to graveyard queue */
|
||||
list_del(&peer->link);
|
||||
write_unlock(&trans->peer_lock);
|
||||
|
||||
list_add_tail(&peer->link, &trans->peer_graveyard);
|
||||
|
||||
BUG_ON(!list_empty(&peer->conn_active));
|
||||
|
||||
rxrpc_krxtimod_add_timer(&peer->timeout, rxrpc_peer_timeout * HZ);
|
||||
|
||||
spin_unlock(&trans->peer_gylock);
|
||||
|
||||
rxrpc_put_transport(trans);
|
||||
|
||||
_leave(" [killed]");
|
||||
} /* end rxrpc_put_peer() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* handle a peer timing out in the graveyard
|
||||
* - called from krxtimod
|
||||
*/
|
||||
static void rxrpc_peer_do_timeout(struct rxrpc_peer *peer)
|
||||
{
|
||||
struct rxrpc_transport *trans = peer->trans;
|
||||
|
||||
_enter("%p{u=%d cc=%d a=%08x}",
|
||||
peer,
|
||||
atomic_read(&peer->usage),
|
||||
atomic_read(&peer->conn_count),
|
||||
ntohl(peer->addr.s_addr));
|
||||
|
||||
BUG_ON(atomic_read(&peer->usage) < 0);
|
||||
|
||||
/* remove from graveyard if still dead */
|
||||
spin_lock(&trans->peer_gylock);
|
||||
if (atomic_read(&peer->usage) == 0)
|
||||
list_del_init(&peer->link);
|
||||
else
|
||||
peer = NULL;
|
||||
spin_unlock(&trans->peer_gylock);
|
||||
|
||||
if (!peer) {
|
||||
_leave("");
|
||||
return; /* resurrected */
|
||||
}
|
||||
|
||||
/* clear all connections on this peer */
|
||||
rxrpc_conn_clearall(peer);
|
||||
|
||||
BUG_ON(!list_empty(&peer->conn_active));
|
||||
BUG_ON(!list_empty(&peer->conn_graveyard));
|
||||
|
||||
/* inform the application layer */
|
||||
if (peer->ops && peer->ops->discarding)
|
||||
peer->ops->discarding(peer);
|
||||
|
||||
if (!list_empty(&peer->proc_link)) {
|
||||
down_write(&rxrpc_peers_sem);
|
||||
list_del(&peer->proc_link);
|
||||
up_write(&rxrpc_peers_sem);
|
||||
}
|
||||
|
||||
__RXACCT(atomic_dec(&rxrpc_peer_count));
|
||||
kfree(peer);
|
||||
|
||||
/* if the graveyard is now empty, wake up anyone waiting for that */
|
||||
if (atomic_dec_and_test(&trans->peer_count))
|
||||
wake_up(&trans->peer_gy_waitq);
|
||||
|
||||
_leave(" [destroyed]");
|
||||
} /* end rxrpc_peer_do_timeout() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* clear all peer records from a transport endpoint
|
||||
*/
|
||||
void rxrpc_peer_clearall(struct rxrpc_transport *trans)
|
||||
{
|
||||
DECLARE_WAITQUEUE(myself,current);
|
||||
|
||||
struct rxrpc_peer *peer;
|
||||
int err;
|
||||
|
||||
_enter("%p",trans);
|
||||
|
||||
/* there shouldn't be any active peers remaining */
|
||||
BUG_ON(!list_empty(&trans->peer_active));
|
||||
|
||||
/* manually timeout all peers in the graveyard */
|
||||
spin_lock(&trans->peer_gylock);
|
||||
while (!list_empty(&trans->peer_graveyard)) {
|
||||
peer = list_entry(trans->peer_graveyard.next,
|
||||
struct rxrpc_peer, link);
|
||||
_debug("Clearing peer %p\n", peer);
|
||||
err = rxrpc_krxtimod_del_timer(&peer->timeout);
|
||||
spin_unlock(&trans->peer_gylock);
|
||||
|
||||
if (err == 0)
|
||||
rxrpc_peer_do_timeout(peer);
|
||||
|
||||
spin_lock(&trans->peer_gylock);
|
||||
}
|
||||
spin_unlock(&trans->peer_gylock);
|
||||
|
||||
/* wait for the the peer graveyard to be completely cleared */
|
||||
set_current_state(TASK_UNINTERRUPTIBLE);
|
||||
add_wait_queue(&trans->peer_gy_waitq, &myself);
|
||||
|
||||
while (atomic_read(&trans->peer_count) != 0) {
|
||||
schedule();
|
||||
set_current_state(TASK_UNINTERRUPTIBLE);
|
||||
}
|
||||
|
||||
remove_wait_queue(&trans->peer_gy_waitq, &myself);
|
||||
set_current_state(TASK_RUNNING);
|
||||
|
||||
_leave("");
|
||||
} /* end rxrpc_peer_clearall() */
|
||||
|
||||
/*****************************************************************************/
|
||||
/*
|
||||
* calculate and cache the Round-Trip-Time for a message and its response
|
||||
*/
|
||||
void rxrpc_peer_calculate_rtt(struct rxrpc_peer *peer,
|
||||
struct rxrpc_message *msg,
|
||||
struct rxrpc_message *resp)
|
||||
{
|
||||
unsigned long long rtt;
|
||||
int loop;
|
||||
|
||||
_enter("%p,%p,%p", peer, msg, resp);
|
||||
|
||||
/* calculate the latest RTT */
|
||||
rtt = resp->stamp.tv_sec - msg->stamp.tv_sec;
|
||||
rtt *= 1000000UL;
|
||||
rtt += resp->stamp.tv_usec - msg->stamp.tv_usec;
|
||||
|
||||
/* add to cache */
|
||||
peer->rtt_cache[peer->rtt_point] = rtt;
|
||||
peer->rtt_point++;
|
||||
peer->rtt_point %= RXRPC_RTT_CACHE_SIZE;
|
||||
|
||||
if (peer->rtt_usage < RXRPC_RTT_CACHE_SIZE)
|
||||
peer->rtt_usage++;
|
||||
|
||||
/* recalculate RTT */
|
||||
rtt = 0;
|
||||
for (loop = peer->rtt_usage - 1; loop >= 0; loop--)
|
||||
rtt += peer->rtt_cache[loop];
|
||||
|
||||
do_div(rtt, peer->rtt_usage);
|
||||
peer->rtt = rtt;
|
||||
|
||||
_leave(" RTT=%lu.%lums",
|
||||
(long) (peer->rtt / 1000), (long) (peer->rtt % 1000));
|
||||
|
||||
} /* end rxrpc_peer_calculate_rtt() */
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user