1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048 |
-
-
- FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
-
- #include <stdint.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <string.h>
- #include <byteswap.h>
- #include <errno.h>
- #include <ipxe/errortab.h>
- #include <ipxe/malloc.h>
- #include <ipxe/if_arp.h>
- #include <ipxe/arp.h>
- #include <ipxe/if_ether.h>
- #include <ipxe/ethernet.h>
- #include <ipxe/ip.h>
- #include <ipxe/iobuf.h>
- #include <ipxe/netdevice.h>
- #include <ipxe/infiniband.h>
- #include <ipxe/ib_pathrec.h>
- #include <ipxe/ib_mcast.h>
- #include <ipxe/retry.h>
- #include <ipxe/ipoib.h>
-
-
-
-
- #define ENXIO_ARP_REPLY __einfo_error ( EINFO_ENXIO_ARP_REPLY )
- #define EINFO_ENXIO_ARP_REPLY \
- __einfo_uniqify ( EINFO_ENXIO, 0x01, \
- "Missing REMAC for ARP reply target address" )
- #define ENXIO_NON_IPV4 __einfo_error ( EINFO_ENXIO_NON_IPV4 )
- #define EINFO_ENXIO_NON_IPV4 \
- __einfo_uniqify ( EINFO_ENXIO, 0x02, \
- "Missing REMAC for non-IPv4 packet" )
- #define ENXIO_ARP_SENT __einfo_error ( EINFO_ENXIO_ARP_SENT )
- #define EINFO_ENXIO_ARP_SENT \
- __einfo_uniqify ( EINFO_ENXIO, 0x03, \
- "Missing REMAC for IPv4 packet (ARP sent)" )
-
-
- #define IPOIB_NUM_SEND_WQES 8
-
-
- #define IPOIB_NUM_RECV_WQES 4
-
-
- #define IPOIB_NUM_CQES 16
-
-
- struct ipoib_broadcast {
-
- struct ipoib_mac mac;
-
- struct ib_address_vector av;
-
- struct ib_mc_membership membership;
- };
-
-
- struct ipoib_device {
-
- struct net_device *netdev;
-
- struct ib_device *ibdev;
-
- struct list_head list;
-
- struct ib_completion_queue *cq;
-
- struct ib_queue_pair *qp;
-
- struct ipoib_mac mac;
-
- struct ipoib_broadcast broadcast;
-
- struct list_head peers;
- };
-
-
- static struct ipoib_mac ipoib_broadcast = {
- .flags__qpn = htonl ( IB_QPN_BROADCAST ),
- .gid.bytes = { 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff },
- };
-
-
- #define EINPROGRESS_JOINING __einfo_error ( EINFO_EINPROGRESS_JOINING )
- #define EINFO_EINPROGRESS_JOINING __einfo_uniqify \
- ( EINFO_EINPROGRESS, 0x01, "Joining" )
-
-
- struct errortab ipoib_errors[] __errortab = {
- __einfo_errortab ( EINFO_EINPROGRESS_JOINING ),
- };
-
-
- static LIST_HEAD ( ipoib_devices );
-
- static struct net_device_operations ipoib_operations;
-
-
-
-
- struct ipoib_peer {
-
- struct list_head list;
-
- struct ipoib_remac remac;
-
- struct ipoib_mac mac;
- };
-
-
- static struct ipoib_mac * ipoib_find_remac ( struct ipoib_device *ipoib,
- const struct ipoib_remac *remac ) {
- struct ipoib_peer *peer;
-
-
-
- if ( is_multicast_ether_addr ( remac ) )
- return &ipoib->broadcast.mac;
-
-
- list_for_each_entry ( peer, &ipoib->peers, list ) {
- if ( memcmp ( remac, &peer->remac,
- sizeof ( peer->remac ) ) == 0 ) {
-
- list_del ( &peer->list );
- list_add ( &peer->list, &ipoib->peers );
- return &peer->mac;
- }
- }
-
- DBGC ( ipoib, "IPoIB %p unknown REMAC %s\n",
- ipoib, eth_ntoa ( remac ) );
- return NULL;
- }
-
-
- static int ipoib_map_remac ( struct ipoib_device *ipoib,
- const struct ipoib_remac *remac,
- const struct ipoib_mac *mac ) {
- struct ipoib_peer *peer;
-
-
- list_for_each_entry ( peer, &ipoib->peers, list ) {
- if ( memcmp ( remac, &peer->remac,
- sizeof ( peer->remac ) ) == 0 ) {
-
- list_del ( &peer->list );
- list_add ( &peer->list, &ipoib->peers );
-
- memcpy ( &peer->mac, mac, sizeof ( peer->mac ) );
- return 0;
- }
- }
-
-
- peer = malloc ( sizeof ( *peer ) );
- if ( ! peer )
- return -ENOMEM;
- memcpy ( &peer->remac, remac, sizeof ( peer->remac ) );
- memcpy ( &peer->mac, mac, sizeof ( peer->mac ) );
- list_add ( &peer->list, &ipoib->peers );
-
- return 0;
- }
-
-
- static void ipoib_flush_remac ( struct ipoib_device *ipoib ) {
- struct ipoib_peer *peer;
- struct ipoib_peer *tmp;
-
- list_for_each_entry_safe ( peer, tmp, &ipoib->peers, list ) {
- list_del ( &peer->list );
- free ( peer );
- }
- }
-
-
- static unsigned int ipoib_discard_remac ( void ) {
- struct net_device *netdev;
- struct ipoib_device *ipoib;
- struct ipoib_peer *peer;
- unsigned int discarded = 0;
-
-
- for_each_netdev ( netdev ) {
-
-
- if ( netdev->op != &ipoib_operations )
- continue;
- ipoib = netdev->priv;
-
-
- list_for_each_entry_reverse ( peer, &ipoib->peers, list ) {
- list_del ( &peer->list );
- free ( peer );
- discarded++;
- break;
- }
- }
-
- return discarded;
- }
-
-
- struct cache_discarder ipoib_discarder __cache_discarder ( CACHE_EXPENSIVE ) = {
- .discard = ipoib_discard_remac,
- };
-
-
-
-
- static void ipoib_init_addr ( const void *hw_addr, void *ll_addr ) {
- const uint8_t *guid = hw_addr;
- uint8_t *eth_addr = ll_addr;
- uint8_t guid_mask = IPOIB_GUID_MASK;
- unsigned int i;
-
-
- for ( i = 0 ; i < 8 ; i++, guid++, guid_mask <<= 1 ) {
- if ( guid_mask & 0x80 )
- *(eth_addr++) = *guid;
- }
- }
-
-
- struct ll_protocol ipoib_protocol __ll_protocol = {
- .name = "IPoIB",
- .ll_proto = htons ( ARPHRD_ETHER ),
- .hw_addr_len = sizeof ( union ib_guid ),
- .ll_addr_len = ETH_ALEN,
- .ll_header_len = ETH_HLEN,
- .push = eth_push,
- .pull = eth_pull,
- .init_addr = ipoib_init_addr,
- .ntoa = eth_ntoa,
- .mc_hash = eth_mc_hash,
- .eth_addr = eth_eth_addr,
- .eui64 = eth_eui64,
- .flags = LL_NAME_ONLY,
- };
-
-
- struct net_device * alloc_ipoibdev ( size_t priv_size ) {
- struct net_device *netdev;
-
- netdev = alloc_netdev ( priv_size );
- if ( netdev ) {
- netdev->ll_protocol = &ipoib_protocol;
- netdev->ll_broadcast = eth_broadcast;
- netdev->max_pkt_len = IB_MAX_PAYLOAD_SIZE;
- }
- return netdev;
- }
-
-
-
-
- static int ipoib_translate_tx_arp ( struct net_device *netdev,
- struct io_buffer *iobuf ) {
- struct ipoib_device *ipoib = netdev->priv;
- struct arphdr *arphdr = iobuf->data;
- struct ipoib_mac *target_ha = NULL;
- void *sender_pa;
- void *target_pa;
-
-
- if ( arphdr->ar_hln != ETH_ALEN )
- return 0;
-
-
- if ( iob_tailroom ( iobuf ) < ( 2 * ( sizeof ( ipoib->mac ) -
- ETH_ALEN ) ) ) {
- DBGC ( ipoib, "IPoIB %p insufficient space in TX ARP\n",
- ipoib );
- return -ENOBUFS;
- }
-
-
- if ( arphdr->ar_op == ARPOP_REPLY ) {
- target_ha = ipoib_find_remac ( ipoib, arp_target_pa ( arphdr ));
- if ( ! target_ha ) {
- DBGC ( ipoib, "IPoIB %p no REMAC for %s ARP reply\n",
- ipoib, eth_ntoa ( arp_target_pa ( arphdr ) ) );
- return -ENXIO_ARP_REPLY;
- }
- }
-
-
- iob_put ( iobuf, ( 2 * ( sizeof ( ipoib->mac ) - ETH_ALEN ) ) );
- sender_pa = arp_sender_pa ( arphdr );
- target_pa = arp_target_pa ( arphdr );
- arphdr->ar_hrd = htons ( ARPHRD_INFINIBAND );
- arphdr->ar_hln = sizeof ( ipoib->mac );
- memcpy ( arp_target_pa ( arphdr ), target_pa, arphdr->ar_pln );
- memcpy ( arp_sender_pa ( arphdr ), sender_pa, arphdr->ar_pln );
- memcpy ( arp_sender_ha ( arphdr ), &ipoib->mac, sizeof ( ipoib->mac ) );
- memset ( arp_target_ha ( arphdr ), 0, sizeof ( ipoib->mac ) );
- if ( target_ha ) {
- memcpy ( arp_target_ha ( arphdr ), target_ha,
- sizeof ( *target_ha ) );
- }
-
- return 0;
- }
-
-
- static int ipoib_translate_tx ( struct net_device *netdev,
- struct io_buffer *iobuf, uint16_t net_proto ) {
-
- switch ( net_proto ) {
- case htons ( ETH_P_ARP ) :
- return ipoib_translate_tx_arp ( netdev, iobuf );
- case htons ( ETH_P_IP ) :
-
- return 0;
- default:
-
- return -ENOTSUP;
- }
- }
-
-
- static int ipoib_translate_rx_arp ( struct net_device *netdev,
- struct io_buffer *iobuf,
- struct ipoib_remac *remac ) {
- struct ipoib_device *ipoib = netdev->priv;
- struct arphdr *arphdr = iobuf->data;
- void *sender_pa;
- void *target_pa;
- int rc;
-
-
- if ( arphdr->ar_hln != sizeof ( ipoib->mac ) )
- return 0;
-
-
- if ( ( rc = ipoib_map_remac ( ipoib, remac,
- arp_sender_ha ( arphdr ) ) ) != 0 ) {
- DBGC ( ipoib, "IPoIB %p could not map REMAC: %s\n",
- ipoib, strerror ( rc ) );
- return rc;
- }
-
-
- sender_pa = arp_sender_pa ( arphdr );
- target_pa = arp_target_pa ( arphdr );
- arphdr->ar_hrd = htons ( ARPHRD_ETHER );
- arphdr->ar_hln = ETH_ALEN;
- memcpy ( arp_sender_pa ( arphdr ), sender_pa, arphdr->ar_pln );
- memcpy ( arp_target_pa ( arphdr ), target_pa, arphdr->ar_pln );
- memcpy ( arp_sender_ha ( arphdr ), remac, ETH_ALEN );
- memset ( arp_target_ha ( arphdr ), 0, ETH_ALEN );
- if ( arphdr->ar_op == ARPOP_REPLY ) {
-
- memcpy ( arp_target_ha ( arphdr ), netdev->ll_addr, ETH_ALEN );
- }
- iob_unput ( iobuf, ( 2 * ( sizeof ( ipoib->mac ) - ETH_ALEN ) ) );
-
- return 0;
- }
-
-
- static int ipoib_translate_rx ( struct net_device *netdev,
- struct io_buffer *iobuf,
- struct ipoib_remac *remac,
- uint16_t net_proto ) {
-
- switch ( net_proto ) {
- case htons ( ETH_P_ARP ) :
- return ipoib_translate_rx_arp ( netdev, iobuf, remac );
- case htons ( ETH_P_IP ) :
-
- return 0;
- default:
-
- return -ENOTSUP;
- }
- }
-
-
-
-
- static int ipoib_transmit ( struct net_device *netdev,
- struct io_buffer *iobuf ) {
- struct ipoib_device *ipoib = netdev->priv;
- struct ib_device *ibdev = ipoib->ibdev;
- struct ethhdr *ethhdr;
- struct iphdr *iphdr;
- struct ipoib_hdr *ipoib_hdr;
- struct ipoib_remac *remac;
- struct ipoib_mac *mac;
- struct ib_address_vector *dest;
- struct ib_address_vector av;
- uint16_t net_proto;
- int rc;
-
-
- if ( iob_len ( iobuf ) < sizeof ( *ethhdr ) ) {
- DBGC ( ipoib, "IPoIB %p buffer too short\n", ipoib );
- return -EINVAL;
- }
-
-
-
- if ( ! ib_link_ok ( ibdev ) )
- return -ENETUNREACH;
-
-
- ethhdr = iobuf->data;
- remac = ( ( struct ipoib_remac * ) ethhdr->h_dest );
- net_proto = ethhdr->h_protocol;
- iob_pull ( iobuf, sizeof ( *ethhdr ) );
-
-
- if ( is_multicast_ether_addr ( remac ) ) {
-
-
- dest = &ipoib->broadcast.av;
-
- } else if ( ( mac = ipoib_find_remac ( ipoib, remac ) ) ) {
-
-
- dest = &av;
- memset ( dest, 0, sizeof ( *dest ) );
- dest->qpn = ( ntohl ( mac->flags__qpn ) & IB_QPN_MASK );
- dest->qkey = ipoib->broadcast.av.qkey;
- dest->gid_present = 1;
- memcpy ( &dest->gid, &mac->gid, sizeof ( dest->gid ) );
- if ( ( rc = ib_resolve_path ( ibdev, dest ) ) != 0 ) {
-
- return rc;
- }
-
- } else {
-
-
-
- if ( ( net_proto != htons ( ETH_P_IP ) ) ||
- ( iob_len ( iobuf ) < sizeof ( *iphdr ) ) ) {
- DBGC ( ipoib, "IPoIB %p no REMAC for %s non-IPv4 "
- "packet type %04x\n", ipoib,
- eth_ntoa ( ethhdr->h_dest ),
- ntohs ( net_proto ) );
- return -ENXIO_NON_IPV4;
- }
- iphdr = iobuf->data;
- if ( ( rc = arp_tx_request ( netdev, &ipv4_protocol,
- &iphdr->dest, &iphdr->src ) ) !=0){
- DBGC ( ipoib, "IPoIB %p could not ARP for %s/%s/",
- ipoib, eth_ntoa ( ethhdr->h_dest ),
- inet_ntoa ( iphdr->dest ) );
- DBGC ( ipoib, "%s: %s\n", inet_ntoa ( iphdr->src ),
- strerror ( rc ) );
- return rc;
- }
- DBGC ( ipoib, "IPoIB %p no REMAC for %s/%s/", ipoib,
- eth_ntoa ( ethhdr->h_dest ), inet_ntoa ( iphdr->dest ) );
- DBGC ( ipoib, "%s\n", inet_ntoa ( iphdr->src ) );
- return -ENXIO_ARP_SENT;
- }
-
-
- if ( ( rc = ipoib_translate_tx ( netdev, iobuf, net_proto ) ) != 0 )
- return rc;
-
-
- ipoib_hdr = iob_push ( iobuf, sizeof ( *ipoib_hdr ) );
- ipoib_hdr->proto = net_proto;
- ipoib_hdr->reserved = 0;
-
-
- return ib_post_send ( ibdev, ipoib->qp, dest, iobuf );
- }
-
-
- static void ipoib_complete_send ( struct ib_device *ibdev __unused,
- struct ib_queue_pair *qp,
- struct io_buffer *iobuf, int rc ) {
- struct ipoib_device *ipoib = ib_qp_get_ownerdata ( qp );
-
- netdev_tx_complete_err ( ipoib->netdev, iobuf, rc );
- }
-
-
- static void ipoib_complete_recv ( struct ib_device *ibdev __unused,
- struct ib_queue_pair *qp,
- struct ib_address_vector *dest,
- struct ib_address_vector *source,
- struct io_buffer *iobuf, int rc ) {
- struct ipoib_device *ipoib = ib_qp_get_ownerdata ( qp );
- struct net_device *netdev = ipoib->netdev;
- struct ipoib_hdr *ipoib_hdr;
- struct ethhdr *ethhdr;
- struct ipoib_remac remac;
- uint16_t net_proto;
-
-
- if ( rc != 0 ) {
- netdev_rx_err ( netdev, iobuf, rc );
- return;
- }
-
-
- if ( iob_len ( iobuf ) < sizeof ( struct ipoib_hdr ) ) {
- DBGC ( ipoib, "IPoIB %p received packet too short to "
- "contain IPoIB header\n", ipoib );
- DBGC_HD ( ipoib, iobuf->data, iob_len ( iobuf ) );
- netdev_rx_err ( netdev, iobuf, -EIO );
- return;
- }
- if ( ! source ) {
- DBGC ( ipoib, "IPoIB %p received packet without address "
- "vector\n", ipoib );
- netdev_rx_err ( netdev, iobuf, -ENOTTY );
- return;
- }
-
-
- ipoib_hdr = iobuf->data;
- net_proto = ipoib_hdr->proto;
- iob_pull ( iobuf, sizeof ( *ipoib_hdr ) );
-
-
- remac.qpn = htonl ( source->qpn | EIPOIB_QPN_LA );
- remac.lid = htons ( source->lid );
-
-
- if ( ( rc = ipoib_translate_rx ( netdev, iobuf, &remac,
- net_proto ) ) != 0 ) {
- netdev_rx_err ( netdev, iobuf, rc );
- return;
- }
-
-
- ethhdr = iob_push ( iobuf, sizeof ( *ethhdr ) );
- memcpy ( ðhdr->h_source, &remac, sizeof ( ethhdr->h_source ) );
- ethhdr->h_protocol = net_proto;
-
-
- if ( dest->gid_present && IB_GID_MULTICAST ( &dest->gid ) ) {
-
- memcpy ( ðhdr->h_dest, eth_broadcast,
- sizeof ( ethhdr->h_dest ) );
- } else {
-
- memcpy ( ðhdr->h_dest, netdev->ll_addr,
- sizeof ( ethhdr->h_dest ) );
- }
-
-
- netdev_rx ( netdev, iobuf );
- }
-
-
- static struct ib_completion_queue_operations ipoib_cq_op = {
- .complete_send = ipoib_complete_send,
- .complete_recv = ipoib_complete_recv,
- };
-
-
- static struct io_buffer * ipoib_alloc_iob ( size_t len ) {
- struct io_buffer *iobuf;
- size_t reserve_len;
-
-
- reserve_len = ( sizeof ( struct ethhdr ) -
- sizeof ( struct ipoib_hdr ) );
-
-
- iobuf = alloc_iob_raw ( ( len + reserve_len ), len, -reserve_len );
- if ( iobuf ) {
- iob_reserve ( iobuf, reserve_len );
- }
- return iobuf;
- }
-
-
- static struct ib_queue_pair_operations ipoib_qp_op = {
- .alloc_iob = ipoib_alloc_iob,
- };
-
-
- static void ipoib_poll ( struct net_device *netdev ) {
- struct ipoib_device *ipoib = netdev->priv;
- struct ib_device *ibdev = ipoib->ibdev;
-
-
- ib_poll_eq ( ibdev );
-
-
- retry_poll();
- }
-
-
- void ipoib_join_complete ( struct ib_mc_membership *membership, int rc ) {
- struct ipoib_device *ipoib = container_of ( membership,
- struct ipoib_device,
- broadcast.membership );
-
-
- netdev_link_err ( ipoib->netdev, rc );
- }
-
-
- static int ipoib_join_broadcast_group ( struct ipoib_device *ipoib ) {
- int rc;
-
-
- if ( ( rc = ib_mcast_join ( ipoib->ibdev, ipoib->qp,
- &ipoib->broadcast.membership,
- &ipoib->broadcast.av, 0,
- ipoib_join_complete ) ) != 0 ) {
- DBGC ( ipoib, "IPoIB %p could not join broadcast group: %s\n",
- ipoib, strerror ( rc ) );
- return rc;
- }
-
- return 0;
- }
-
-
- static void ipoib_leave_broadcast_group ( struct ipoib_device *ipoib ) {
-
-
- ib_mcast_leave ( ipoib->ibdev, ipoib->qp,
- &ipoib->broadcast.membership );
- }
-
-
- static void ipoib_link_state_changed ( struct ipoib_device *ipoib ) {
- struct ib_device *ibdev = ipoib->ibdev;
- struct net_device *netdev = ipoib->netdev;
- int rc;
-
-
- if ( ipoib->qp )
- ipoib_leave_broadcast_group ( ipoib );
-
-
- memcpy ( &ipoib->mac.gid.s.prefix, &ibdev->gid.s.prefix,
- sizeof ( ipoib->mac.gid.s.prefix ) );
-
-
- ipoib->broadcast.mac.gid.words[2] =
- htons ( ibdev->pkey | IB_PKEY_FULL );
-
-
- memset ( &ipoib->broadcast.av, 0, sizeof ( ipoib->broadcast.av ) );
- ipoib->broadcast.av.qpn = IB_QPN_BROADCAST;
- ipoib->broadcast.av.gid_present = 1;
- memcpy ( &ipoib->broadcast.av.gid, &ipoib->broadcast.mac.gid,
- sizeof ( ipoib->broadcast.av.gid ) );
-
-
- rc = ib_link_rc ( ibdev );
- netdev_link_err ( netdev, ( rc ? rc : -EINPROGRESS_JOINING ) );
-
-
- if ( ib_is_open ( ibdev ) && ib_link_ok ( ibdev ) && ipoib->qp &&
- ( ( rc = ipoib_join_broadcast_group ( ipoib ) ) != 0 ) ) {
- DBGC ( ipoib, "IPoIB %p could not rejoin broadcast group: "
- "%s\n", ipoib, strerror ( rc ) );
- netdev_link_err ( netdev, rc );
- return;
- }
- }
-
-
- static int ipoib_open ( struct net_device *netdev ) {
- struct ipoib_device *ipoib = netdev->priv;
- struct ib_device *ibdev = ipoib->ibdev;
- int rc;
-
-
- if ( ( rc = ib_open ( ibdev ) ) != 0 ) {
- DBGC ( ipoib, "IPoIB %p could not open device: %s\n",
- ipoib, strerror ( rc ) );
- goto err_ib_open;
- }
-
-
- ipoib->cq = ib_create_cq ( ibdev, IPOIB_NUM_CQES, &ipoib_cq_op );
- if ( ! ipoib->cq ) {
- DBGC ( ipoib, "IPoIB %p could not allocate completion queue\n",
- ipoib );
- rc = -ENOMEM;
- goto err_create_cq;
- }
-
-
- ipoib->qp = ib_create_qp ( ibdev, IB_QPT_UD, IPOIB_NUM_SEND_WQES,
- ipoib->cq, IPOIB_NUM_RECV_WQES, ipoib->cq,
- &ipoib_qp_op, netdev->name );
- if ( ! ipoib->qp ) {
- DBGC ( ipoib, "IPoIB %p could not allocate queue pair\n",
- ipoib );
- rc = -ENOMEM;
- goto err_create_qp;
- }
- ib_qp_set_ownerdata ( ipoib->qp, ipoib );
-
-
- ipoib->mac.flags__qpn = htonl ( ipoib->qp->qpn );
-
-
- ib_refill_recv ( ibdev, ipoib->qp );
-
-
- ipoib_link_state_changed ( ipoib );
-
- return 0;
-
- ib_destroy_qp ( ibdev, ipoib->qp );
- err_create_qp:
- ib_destroy_cq ( ibdev, ipoib->cq );
- err_create_cq:
- ib_close ( ibdev );
- err_ib_open:
- return rc;
- }
-
-
- static void ipoib_close ( struct net_device *netdev ) {
- struct ipoib_device *ipoib = netdev->priv;
- struct ib_device *ibdev = ipoib->ibdev;
-
-
- ipoib_flush_remac ( ipoib );
-
-
- ipoib_leave_broadcast_group ( ipoib );
-
-
- ipoib->mac.flags__qpn = 0;
-
-
- ib_destroy_qp ( ibdev, ipoib->qp );
- ipoib->qp = NULL;
- ib_destroy_cq ( ibdev, ipoib->cq );
- ipoib->cq = NULL;
-
-
- ib_close ( ibdev );
- }
-
-
- static struct net_device_operations ipoib_operations = {
- .open = ipoib_open,
- .close = ipoib_close,
- .transmit = ipoib_transmit,
- .poll = ipoib_poll,
- };
-
-
- static int ipoib_probe ( struct ib_device *ibdev ) {
- struct net_device *netdev;
- struct ipoib_device *ipoib;
- int rc;
-
-
- netdev = alloc_ipoibdev ( sizeof ( *ipoib ) );
- if ( ! netdev )
- return -ENOMEM;
- netdev_init ( netdev, &ipoib_operations );
- ipoib = netdev->priv;
- netdev->dev = ibdev->dev;
- memset ( ipoib, 0, sizeof ( *ipoib ) );
- ipoib->netdev = netdev;
- ipoib->ibdev = ibdev;
- INIT_LIST_HEAD ( &ipoib->peers );
-
-
- memcpy ( netdev->hw_addr, &ibdev->gid.s.guid,
- sizeof ( ibdev->gid.s.guid ) );
- memcpy ( netdev->ll_addr, ibdev->lemac, ETH_ALEN );
-
-
- memcpy ( &ipoib->mac.gid.s.guid, &ibdev->gid.s.guid,
- sizeof ( ipoib->mac.gid.s.guid ) );
-
-
- memcpy ( &ipoib->broadcast.mac, &ipoib_broadcast,
- sizeof ( ipoib->broadcast.mac ) );
-
-
- list_add_tail ( &ipoib->list, &ipoib_devices );
-
-
- if ( ( rc = register_netdev ( netdev ) ) != 0 )
- goto err_register_netdev;
-
- return 0;
-
- unregister_netdev ( netdev );
- err_register_netdev:
- list_del ( &ipoib->list );
- netdev_nullify ( netdev );
- netdev_put ( netdev );
- return rc;
- }
-
-
- static void ipoib_notify ( struct ib_device *ibdev ) {
- struct ipoib_device *ipoib;
-
-
- list_for_each_entry ( ipoib, &ipoib_devices, list ) {
- if ( ipoib->ibdev != ibdev )
- continue;
- ipoib_link_state_changed ( ipoib );
- }
- }
-
-
- static void ipoib_remove ( struct ib_device *ibdev ) {
- struct ipoib_device *ipoib;
- struct ipoib_device *tmp;
- struct net_device *netdev;
-
-
- list_for_each_entry_safe ( ipoib, tmp, &ipoib_devices, list ) {
- if ( ipoib->ibdev != ibdev )
- continue;
- netdev = ipoib->netdev;
- unregister_netdev ( netdev );
- list_del ( &ipoib->list );
- netdev_nullify ( netdev );
- netdev_put ( netdev );
- }
- }
-
-
- struct ib_driver ipoib_driver __ib_driver = {
- .name = "IPoIB",
- .probe = ipoib_probe,
- .notify = ipoib_notify,
- .remove = ipoib_remove,
- };
-
-
- struct net_device * ipoib_netdev ( struct ib_device *ibdev ) {
- struct ipoib_device *ipoib;
-
-
- list_for_each_entry ( ipoib, &ipoib_devices, list ) {
- if ( ipoib->ibdev != ibdev )
- continue;
- return ipoib->netdev;
- }
- return NULL;
- }
|