Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tl/udp/udp.c

    r609243f4 r348c589  
    9999static int udp_release_and_return(packet_t *packet, int result)
    100100{
    101         pq_release_remote(udp_globals.net_sess, packet_get_id(packet));
     101        pq_release_remote(udp_globals.net_phone, packet_get_id(packet));
    102102        return result;
    103103}
     
    124124 *                      ip_client_process_packet() function.
    125125 */
    126 static int udp_process_packet(nic_device_id_t device_id, packet_t *packet,
     126static int udp_process_packet(device_id_t device_id, packet_t *packet,
    127127    services_t error)
    128128{
     
    192192            ntohs(header->destination_port), (uint8_t *) SOCKET_MAP_KEY_LISTENING, 0);
    193193        if (!socket) {
    194                 if (tl_prepare_icmp_packet(udp_globals.net_sess,
    195                     udp_globals.icmp_sess, packet, error) == EOK) {
    196                         icmp_destination_unreachable_msg(udp_globals.icmp_sess,
     194                if (tl_prepare_icmp_packet(udp_globals.net_phone,
     195                    udp_globals.icmp_phone, packet, error) == EOK) {
     196                        icmp_destination_unreachable_msg(udp_globals.icmp_phone,
    197197                            ICMP_PORT_UNREACH, 0, packet);
    198198                }
     
    251251                        while (tmp_packet) {
    252252                                next_packet = pq_detach(tmp_packet);
    253                                 pq_release_remote(udp_globals.net_sess,
     253                                pq_release_remote(udp_globals.net_phone,
    254254                                    packet_get_id(tmp_packet));
    255255                                tmp_packet = next_packet;
     
    274274                if (flip_checksum(compact_checksum(checksum)) !=
    275275                    IP_CHECKSUM_ZERO) {
    276                         if (tl_prepare_icmp_packet(udp_globals.net_sess,
    277                             udp_globals.icmp_sess, packet, error) == EOK) {
     276                        if (tl_prepare_icmp_packet(udp_globals.net_phone,
     277                            udp_globals.icmp_phone, packet, error) == EOK) {
    278278                                /* Checksum error ICMP */
    279279                                icmp_parameter_problem_msg(
    280                                     udp_globals.icmp_sess, ICMP_PARAM_POINTER,
     280                                    udp_globals.icmp_phone, ICMP_PARAM_POINTER,
    281281                                    ((size_t) ((void *) &header->checksum)) -
    282282                                    ((size_t) ((void *) header)), packet);
     
    292292                return udp_release_and_return(packet, rc);
    293293               
    294         rc = tl_get_ip_packet_dimension(udp_globals.ip_sess,
     294        rc = tl_get_ip_packet_dimension(udp_globals.ip_phone,
    295295            &udp_globals.dimensions, device_id, &packet_dimension);
    296296        if (rc != EOK)
     
    299299        /* Notify the destination socket */
    300300        fibril_rwlock_write_unlock(&udp_globals.lock);
    301        
    302         async_exch_t *exch = async_exchange_begin(socket->sess);
    303         async_msg_5(exch, NET_SOCKET_RECEIVED, (sysarg_t) socket->socket_id,
    304             packet_dimension->content, 0, 0, (sysarg_t) fragments);
    305         async_exchange_end(exch);
     301        async_msg_5(socket->phone, NET_SOCKET_RECEIVED,
     302            (sysarg_t) socket->socket_id, packet_dimension->content, 0, 0,
     303            (sysarg_t) fragments);
    306304
    307305        return EOK;
     
    322320 *                      udp_process_packet() function.
    323321 */
    324 static int udp_received_msg(nic_device_id_t device_id, packet_t *packet,
     322static int udp_received_msg(device_id_t device_id, packet_t *packet,
    325323    services_t receiver, services_t error)
    326324{
     
    339337 * @param[in]     iid   Message identifier.
    340338 * @param[in,out] icall Message parameters.
    341  * @param[in]     arg   Local argument.
    342  *
    343  */
    344 static void udp_receiver(ipc_callid_t iid, ipc_call_t *icall, void *arg)
     339 *
     340 */
     341static void udp_receiver(ipc_callid_t iid, ipc_call_t *icall)
    345342{
    346343        packet_t *packet;
     
    350347                switch (IPC_GET_IMETHOD(*icall)) {
    351348                case NET_TL_RECEIVED:
    352                         rc = packet_translate_remote(udp_globals.net_sess, &packet,
     349                        rc = packet_translate_remote(udp_globals.net_phone, &packet,
    353350                            IPC_GET_PACKET(*icall));
    354351                        if (rc == EOK)
     
    368365/** Initialize the UDP module.
    369366 *
    370  * @param[in] sess Network module session.
     367 * @param[in] net_phone Network module phone.
    371368 *
    372369 * @return EOK on success.
     
    374371 *
    375372 */
    376 int tl_initialize(async_sess_t *sess)
     373int tl_initialize(int net_phone)
    377374{
    378375        measured_string_t names[] = {
     
    393390        fibril_rwlock_write_lock(&udp_globals.lock);
    394391       
    395         udp_globals.net_sess = sess;
    396         udp_globals.icmp_sess = icmp_connect_module();
    397        
    398         udp_globals.ip_sess = ip_bind_service(SERVICE_IP, IPPROTO_UDP,
    399              SERVICE_UDP, udp_receiver);
    400         if (udp_globals.ip_sess == NULL) {
    401             fibril_rwlock_write_unlock(&udp_globals.lock);
    402             return ENOENT;
     392        udp_globals.net_phone = net_phone;
     393       
     394        udp_globals.icmp_phone = icmp_connect_module(ICMP_CONNECT_TIMEOUT);
     395       
     396        udp_globals.ip_phone = ip_bind_service(SERVICE_IP, IPPROTO_UDP,
     397            SERVICE_UDP, udp_receiver);
     398        if (udp_globals.ip_phone < 0) {
     399                fibril_rwlock_write_unlock(&udp_globals.lock);
     400                return udp_globals.ip_phone;
    403401        }
    404402       
    405403        /* Read default packet dimensions */
    406         int rc = ip_packet_size_req(udp_globals.ip_sess, -1,
     404        int rc = ip_packet_size_req(udp_globals.ip_phone, -1,
    407405            &udp_globals.packet_dimension);
    408406        if (rc != EOK) {
     
    433431        /* Get configuration */
    434432        configuration = &names[0];
    435         rc = net_get_conf_req(udp_globals.net_sess, &configuration, count,
     433        rc = net_get_conf_req(udp_globals.net_phone, &configuration, count,
    436434            &data);
    437435        if (rc != EOK) {
     
    499497        void *ip_header;
    500498        size_t headerlen;
    501         nic_device_id_t device_id;
     499        device_id_t device_id;
    502500        packet_dimension_t *packet_dimension;
    503501        size_t size;
     
    527525
    528526        if (udp_globals.checksum_computing) {
    529                 rc = ip_get_route_req(udp_globals.ip_sess, IPPROTO_UDP, addr,
     527                rc = ip_get_route_req(udp_globals.ip_phone, IPPROTO_UDP, addr,
    530528                    addrlen, &device_id, &ip_header, &headerlen);
    531529                if (rc != EOK)
    532530                        return rc;
    533531                /* Get the device packet dimension */
    534 //              rc = tl_get_ip_packet_dimension(udp_globals.ip_sess,
     532//              rc = tl_get_ip_packet_dimension(udp_globals.ip_phone,
    535533//                  &udp_globals.dimensions, device_id, &packet_dimension);
    536534//              if (rc != EOK)
     
    539537//      } else {
    540538                /* Do not ask all the time */
    541                 rc = ip_packet_size_req(udp_globals.ip_sess, -1,
     539                rc = ip_packet_size_req(udp_globals.ip_phone, -1,
    542540                    &udp_globals.packet_dimension);
    543541                if (rc != EOK)
     
    557555
    558556        /* Read the first packet fragment */
    559         result = tl_socket_read_packet_data(udp_globals.net_sess, &packet,
     557        result = tl_socket_read_packet_data(udp_globals.net_phone, &packet,
    560558            UDP_HEADER_SIZE, packet_dimension, addr, addrlen);
    561559        if (result < 0)
     
    578576        /* Read the rest of the packet fragments */
    579577        for (index = 1; index < fragments; index++) {
    580                 result = tl_socket_read_packet_data(udp_globals.net_sess,
     578                result = tl_socket_read_packet_data(udp_globals.net_phone,
    581579                    &next_packet, 0, packet_dimension, addr, addrlen);
    582580                if (result < 0)
     
    617615                    htons(flip_checksum(compact_checksum(checksum)));
    618616                free(ip_header);
    619         } else
    620                 device_id = NIC_DEVICE_INVALID_ID;
     617        } else {
     618                device_id = DEVICE_INVALID_ID;
     619        }
    621620
    622621        /* Prepare the first packet fragment */
     
    629628
    630629        /* Send the packet */
    631         ip_send_msg(udp_globals.ip_sess, device_id, packet, SERVICE_UDP, 0);
     630        ip_send_msg(udp_globals.ip_phone, device_id, packet, SERVICE_UDP, 0);
    632631
    633632        return EOK;
     
    676675                return NO_DATA;
    677676       
    678         rc = packet_translate_remote(udp_globals.net_sess, &packet, packet_id);
     677        rc = packet_translate_remote(udp_globals.net_phone, &packet, packet_id);
    679678        if (rc != EOK) {
    680679                (void) dyn_fifo_pop(&socket->received);
     
    736735}
    737736
    738 /** Process the socket client messages.
    739  *
    740  * Run until the client module disconnects.
    741  *
    742  * @see socket.h
    743  *
    744  * @param[in] sess   Callback session.
    745  * @param[in] callid Message identifier.
    746  * @param[in] call   Message parameters.
    747  *
    748  * @return EOK on success.
    749  *
    750  */
    751 static int udp_process_client_messages(async_sess_t *sess, ipc_callid_t callid,
    752     ipc_call_t call)
     737/** Processes the socket client messages.
     738 *
     739 * Runs until the client module disconnects.
     740 *
     741 * @param[in] callid    The message identifier.
     742 * @param[in] call      The message parameters.
     743 * @return              EOK on success.
     744 *
     745 * @see socket.h
     746 */
     747static int udp_process_client_messages(ipc_callid_t callid, ipc_call_t call)
    753748{
    754749        int res;
     750        bool keep_on_going = true;
    755751        socket_cores_t local_sockets;
     752        int app_phone = IPC_GET_PHONE(call);
    756753        struct sockaddr *addr;
    757754        int socket_id;
     
    776773        socket_cores_initialize(&local_sockets);
    777774
    778         while (true) {
     775        while (keep_on_going) {
    779776
    780777                /* Answer the call */
     
    788785
    789786                /* Process the call */
    790                 if (!IPC_GET_IMETHOD(call)) {
     787                switch (IPC_GET_IMETHOD(call)) {
     788                case IPC_M_PHONE_HUNGUP:
     789                        keep_on_going = false;
    791790                        res = EHANGUP;
    792791                        break;
    793                 }
    794                
    795                 switch (IPC_GET_IMETHOD(call)) {
     792
    796793                case NET_SOCKET:
    797794                        socket_id = SOCKET_GET_SOCKET_ID(call);
    798                         res = socket_create(&local_sockets, sess, NULL,
     795                        res = socket_create(&local_sockets, app_phone, NULL,
    799796                            &socket_id);
    800797                        SOCKET_SET_SOCKET_ID(answer, socket_id);
     
    804801                       
    805802                        size = MAX_UDP_FRAGMENT_SIZE;
    806                         if (tl_get_ip_packet_dimension(udp_globals.ip_sess,
    807                             &udp_globals.dimensions, NIC_DEVICE_INVALID_ID,
     803                        if (tl_get_ip_packet_dimension(udp_globals.ip_phone,
     804                            &udp_globals.dimensions, DEVICE_INVALID_ID,
    808805                            &packet_dimension) == EOK) {
    809806                                if (packet_dimension->content < size)
     
    868865                case NET_SOCKET_CLOSE:
    869866                        fibril_rwlock_write_lock(&udp_globals.lock);
    870                         res = socket_destroy(udp_globals.net_sess,
     867                        res = socket_destroy(udp_globals.net_phone,
    871868                            SOCKET_GET_SOCKET_ID(call), &local_sockets,
    872869                            &udp_globals.sockets, NULL);
     
    882879        }
    883880
    884         /* Release the application session */
    885         async_hangup(sess);
     881        /* Release the application phone */
     882        async_hangup(app_phone);
    886883
    887884        /* Release all local sockets */
    888         socket_cores_release(udp_globals.net_sess, &local_sockets,
     885        socket_cores_release(udp_globals.net_phone, &local_sockets,
    889886            &udp_globals.sockets, NULL);
    890887
     
    916913{
    917914        *answer_count = 0;
    918        
    919         async_sess_t *callback =
    920             async_callback_receive_start(EXCHANGE_SERIALIZE, call);
    921         if (callback)
    922                 return udp_process_client_messages(callback, callid, *call);
    923        
     915
     916        switch (IPC_GET_IMETHOD(*call)) {
     917        case IPC_M_CONNECT_TO_ME:
     918                return udp_process_client_messages(callid, *call);
     919        }
     920
    924921        return ENOTSUP;
    925922}
Note: See TracChangeset for help on using the changeset viewer.