/* list of mctp_sk_key, for incoming tag lookup. updates protected * by sk->net->keys_lock
*/ struct hlist_head keys;
/* mechanism for expiring allocated keys; will release an allocated * tag, and any netdev state for a request/response pairing
*/ struct timer_list key_expiry;
};
/* Key for matching incoming packets to sockets or reassembly contexts. * Packets are matched on (peer EID, local EID, tag). * * Lifetime / locking requirements: * * - individual key data (ie, the struct itself) is protected by key->lock; * changes must be made with that lock held. * * - the lookup fields: peer_addr, local_addr and tag are set before the * key is added to lookup lists, and never updated. * * - A ref to the key must be held (throuh key->refs) if a pointer to the * key is to be accessed after key->lock is released. * * - a mctp_sk_key contains a reference to a struct sock; this is valid * for the life of the key. On sock destruction (through unhash), the key is * removed from lists (see below), and marked invalid. * * - these mctp_sk_keys appear on two lists: * 1) the struct mctp_sock->keys list * 2) the struct netns_mctp->keys list * * presences on these lists requires a (single) refcount to be held; both * lists are updated as a single operation. * * Updates and lookups in either list are performed under the * netns_mctp->keys lock. Lookup functions will need to lock the key and * take a reference before unlocking the keys_lock. Consequently, the list's * keys_lock *cannot* be acquired with the individual key->lock held. * * - a key may have a sk_buff attached as part of an in-progress message * reassembly (->reasm_head). The reasm data is protected by the individual * key->lock. * * - there are two destruction paths for a mctp_sk_key: * * - through socket unhash (see mctp_sk_unhash). This performs the list * removal under keys_lock. * * - where a key is established to receive a reply message: after receiving * the (complete) reply, or during reassembly errors. Here, we clean up * the reassembly context (marking reasm_dead, to prevent another from * starting), and remove the socket from the netns & socket lists. * * - through an expiry timeout, on a per-socket timer
*/ struct mctp_sk_key { unsignedint net;
mctp_eid_t peer_addr;
mctp_eid_t local_addr; /* MCTP_ADDR_ANY for local owned tags */
__u8 tag; /* incoming tag match; invert TO for local */
/* we hold a ref to sk when set */ struct sock *sk;
/* routing lookup list */ struct hlist_node hlist;
/* per-socket list */ struct hlist_node sklist;
/* lock protects against concurrent updates to the reassembly and * expiry data below.
*/
spinlock_t lock;
/* Keys are referenced during the output path, which may sleep */
refcount_t refs;
/* free to use for device flow state tracking. Initialised to * zero on initial key creation
*/ unsignedlong dev_flow_state; struct mctp_dev *dev;
/* a tag allocated with SIOCMCTPALLOCTAG ioctl will not expire * automatically on timeout or response, instead SIOCMCTPDROPTAG * is used.
*/ bool manual_alloc;
};
struct mctp_skb_cb { unsignedint magic; unsignedint net; /* fields below provide extended addressing for ingress to recvmsg() */ int ifindex; unsignedchar halen; unsignedchar haddr[MAX_ADDR_LEN];
};
/* skb control-block accessors with a little extra debugging for initial * development. * * TODO: remove checks & mctp_skb_cb->magic; replace callers of __mctp_cb * with mctp_cb(). * * __mctp_cb() is only for the initial ingress code; we should see ->magic set * at all times after this.
*/ staticinlinestruct mctp_skb_cb *__mctp_cb(struct sk_buff *skb)
{ struct mctp_skb_cb *cb = (void *)skb->cb;
/* If CONFIG_MCTP_FLOWS, we may add one of these as a SKB extension, * indicating the flow to the device driver.
*/ struct mctp_flow { struct mctp_sk_key *key;
};
struct mctp_dst;
/* Route definition. * * These are held in the pernet->mctp.routes list, with RCU protection for * removed routes. We hold a reference to the netdev; routes need to be * dropped on NETDEV_UNREGISTER events. * * Updates to the route table are performed under rtnl; all reads under RCU, * so routes cannot be referenced over a RCU grace period.
*/ struct mctp_route {
mctp_eid_t min, max;
/* Route lookup result: dst. Represents the results of a routing decision, * but is only held over the individual routing operation. * * Will typically be stored on the caller stack, and must be released after * usage.
*/ struct mctp_dst { struct mctp_dev *dev; unsignedint mtu;
mctp_eid_t nexthop;
/* set for direct addressing */ unsignedchar halen; unsignedchar haddr[MAX_ADDR_LEN];
int (*output)(struct mctp_dst *dst, struct sk_buff *skb);
};
int mctp_dst_from_extaddr(struct mctp_dst *dst, struct net *net, int ifindex, unsignedchar halen, constunsignedchar *haddr);
/* route interfaces */ int mctp_route_lookup(struct net *net, unsignedint dnet,
mctp_eid_t daddr, struct mctp_dst *dst);
int mctp_neigh_init(void); void mctp_neigh_exit(void);
// ret_hwaddr may be NULL, otherwise must have space for MAX_ADDR_LEN int mctp_neigh_lookup(struct mctp_dev *dev, mctp_eid_t eid, void *ret_hwaddr); void mctp_neigh_remove_dev(struct mctp_dev *mdev);
int mctp_routes_init(void); void mctp_routes_exit(void);
int mctp_device_init(void); void mctp_device_exit(void);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.