Changeset 695b6ff in mainline
- Timestamp:
- 2013-09-12T21:26:18Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b8b1adb1, ddd0499d
- Parents:
- 4a90582
- Files:
-
- 3 added
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
.bzrignore
r4a90582 r695b6ff 267 267 uspace/dist/srv/rfb 268 268 uspace/srv/hid/rfb/rfb 269 uspace/dist/srv/dhcp 270 uspace/srv/net/dhcp/dhcp -
boot/Makefile.common
r4a90582 r695b6ff 113 113 $(USPACE_PATH)/srv/hid/isdv4_tablet/isdv4_tablet \ 114 114 $(USPACE_PATH)/srv/hid/rfb/rfb \ 115 $(USPACE_PATH)/srv/net/dhcp/dhcp \ 115 116 $(USPACE_PATH)/srv/net/dnsrsrv/dnsrsrv \ 116 117 $(USPACE_PATH)/srv/net/ethip/ethip \ -
uspace/Makefile
r4a90582 r695b6ff 90 90 srv/devman \ 91 91 srv/loader \ 92 srv/net/dhcp \ 92 93 srv/net/dnsrsrv \ 93 94 srv/net/ethip \ -
uspace/lib/c/generic/inet.c
r4a90582 r695b6ff 111 111 112 112 ipc_call_t answer; 113 aid_t req = async_send_ 3(exch, INET_SEND, dgram->tos, ttl, df,114 &answer);113 aid_t req = async_send_4(exch, INET_SEND, dgram->iplink, dgram->tos, 114 ttl, df, &answer); 115 115 116 116 int rc = async_data_write_start(exch, &dgram->src, sizeof(inet_addr_t)); -
uspace/lib/c/generic/inet/addr.c
r4a90582 r695b6ff 47 47 #error The architecture must be either big-endian or little-endian. 48 48 #endif 49 50 const addr32_t addr32_broadcast_all_hosts = 0xffffffff; 49 51 50 52 const addr48_t addr48_broadcast = { -
uspace/lib/c/include/inet/addr.h
r4a90582 r695b6ff 68 68 } inet_naddr_t; 69 69 70 extern const addr32_t addr32_broadcast_all_hosts; 70 71 extern const addr48_t addr48_broadcast; 71 72 -
uspace/lib/c/include/inet/inet.h
r4a90582 r695b6ff 37 37 38 38 #include <inet/addr.h> 39 #include <ipc/loc.h> 39 40 #include <sys/types.h> 40 41 … … 42 43 43 44 typedef struct { 45 /** Local IP link service ID (optional) */ 46 service_id_t iplink; 44 47 inet_addr_t src; 45 48 inet_addr_t dest; -
uspace/lib/c/include/ipc/socket.h
r4a90582 r695b6ff 198 198 #define SOCKET_GET_OPT_NAME(call) \ 199 199 ({ \ 200 int opt_name = (int) IPC_GET_ARG 4(call); \200 int opt_name = (int) IPC_GET_ARG2(call); \ 201 201 opt_name; \ 202 202 }) -
uspace/lib/c/include/net/socket_codes.h
r4a90582 r695b6ff 75 75 typedef int32_t socklen_t; 76 76 77 /* Socket options */ 78 79 enum { 80 SOL_SOCKET = 1, 81 82 /* IP link to transmit on */ 83 SO_IPLINK 84 }; 85 77 86 #endif 78 87 -
uspace/srv/net/dnsrsrv/dnsrsrv.c
r4a90582 r695b6ff 60 60 rc = transport_init(); 61 61 if (rc != EOK) { 62 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing t arnsport.");62 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing transport."); 63 63 return EIO; 64 64 } -
uspace/srv/net/ethip/arp.c
r4a90582 r695b6ff 98 98 addr48_t mac_addr) 99 99 { 100 /* Broadcast address */ 101 if (ip_addr == addr32_broadcast_all_hosts) { 102 addr48(addr48_broadcast, mac_addr); 103 return EOK; 104 } 105 100 106 int rc = atrans_lookup(ip_addr, mac_addr); 101 107 if (rc == EOK) -
uspace/srv/net/ethip/ethip_nic.c
r4a90582 r695b6ff 202 202 } 203 203 204 rc = nic_broadcast_set_mode(nic->sess, NIC_BROADCAST_ACCEPTED); 205 if (rc != EOK) { 206 log_msg(LOG_DEFAULT, LVL_ERROR, "Error enabling " 207 "reception of broadcast frames on '%s'.", nic->svc_name); 208 goto error; 209 } 210 204 211 log_msg(LOG_DEFAULT, LVL_DEBUG, "Initialized IP link service,"); 205 212 -
uspace/srv/net/inetsrv/icmp.c
r4a90582 r695b6ff 105 105 reply->checksum = host2uint16_t_be(checksum); 106 106 107 rdgram.iplink = 0; 107 108 rdgram.src = dgram->dest; 108 109 rdgram.dest = dgram->src; … … 171 172 inet_addr_set(sdu->dest, &dgram.dest); 172 173 174 dgram.iplink = 0; 173 175 dgram.tos = ICMP_TOS; 174 176 dgram.data = rdata; -
uspace/srv/net/inetsrv/inet_link.c
r4a90582 r695b6ff 235 235 inet_addrobj_t *addr = NULL; 236 236 237 /* XXX FIXME Cannot rely on loopback being the first IP link service!! */ 237 238 if (first_link) { 238 239 addr = inet_addrobj_new(); … … 240 241 inet_naddr(&addr->naddr, 127, 0, 0, 1, 24); 241 242 first_link = false; 242 } else {243 /*244 * FIXME245 * Setting static IPv4 address for testing purposes:246 * 10.0.2.15/24247 */248 addr = inet_addrobj_new();249 250 inet_naddr(&addr->naddr, 10, 0, 2, 15, 24);251 243 } 252 244 -
uspace/srv/net/inetsrv/inetsrv.c
r4a90582 r695b6ff 68 68 }; 69 69 70 static inet_addr_t broadcast4_all_hosts = { 71 .family = AF_INET, 72 .addr = 0xffffffff 73 }; 74 70 75 static inet_addr_t multicast_all_nodes = { 71 76 .family = AF_INET6, … … 119 124 } 120 125 121 inet_sroute_t *sroute = inet_sroute_new();122 if (sroute == NULL) {123 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed creating default route (%d).", rc);124 return ENOMEM;125 }126 127 inet_naddr(&sroute->dest, 0, 0, 0, 0, 0);128 inet_addr(&sroute->router, 10, 0, 2, 2);129 sroute->name = str_dup("default");130 inet_sroute_add(sroute);131 132 126 rc = inet_link_discovery_start(); 133 127 if (rc != EOK) … … 186 180 { 187 181 inet_dir_t dir; 182 inet_link_t *ilink; 188 183 int rc; 184 185 if (dgram->iplink != 0) { 186 log_msg(LOG_DEFAULT, LVL_DEBUG, "dgram directly to iplink %zu", 187 dgram->iplink); 188 /* Send packet directly to the specified IP link */ 189 ilink = inet_link_get_by_id(dgram->iplink); 190 if (ilink == 0) 191 return ENOENT; 192 193 if (dgram->src.family != AF_INET || 194 dgram->dest.family != AF_INET) 195 return EINVAL; 196 197 return inet_link_send_dgram(ilink, dgram->src.addr, 198 dgram->dest.addr, dgram, proto, ttl, df); 199 } 200 201 log_msg(LOG_DEFAULT, LVL_DEBUG, "dgram to be routed"); 202 203 /* Route packet using source/destination addresses */ 189 204 190 205 rc = inet_find_dir(&dgram->src, &dgram->dest, dgram->tos, &dir); … … 214 229 215 230 /* Take source address from the address object */ 231 if (remote->family == AF_INET && remote->addr == 0xffffffff) { 232 local->family = AF_INET; 233 local->addr = 0; 234 return EOK; 235 } 216 236 inet_naddr_addr(&dir.aobj->naddr, local); 217 237 return EOK; … … 282 302 inet_dgram_t dgram; 283 303 284 dgram.tos = IPC_GET_ARG1(*icall); 285 286 uint8_t ttl = IPC_GET_ARG2(*icall); 304 dgram.iplink = IPC_GET_ARG1(*icall); 305 dgram.tos = IPC_GET_ARG2(*icall); 306 307 uint8_t ttl = IPC_GET_ARG3(*icall); 287 308 int df = IPC_GET_ARG3(*icall); 288 309 … … 524 545 if ((addr != NULL) || 525 546 (inet_naddr_compare_mask(&solicited_node_mask, &packet->dest)) || 526 (inet_addr_compare(&multicast_all_nodes, &packet->dest))) { 547 (inet_addr_compare(&multicast_all_nodes, &packet->dest)) || 548 (inet_addr_compare(&broadcast4_all_hosts, &packet->dest))) { 527 549 /* Destined for one of the local addresses */ 528 550 -
uspace/srv/net/inetsrv/inetsrv.h
r4a90582 r695b6ff 127 127 128 128 typedef struct { 129 service_id_t iplink; 129 130 inet_addr_t src; 130 131 inet_addr_t dest; -
uspace/srv/net/tcp/tcp.c
r4a90582 r695b6ff 141 141 pdu->text_size); 142 142 143 dgram.iplink = 0; 143 144 dgram.src = pdu->src; 144 145 dgram.dest = pdu->dest; -
uspace/srv/net/udp/assoc.c
r4a90582 r695b6ff 184 184 fibril_mutex_unlock(&assoc_list_lock); 185 185 udp_assoc_delref(assoc); 186 } 187 188 /** Set IP link in association. 189 * 190 * @param assoc Association 191 * @param iplink IP link 192 */ 193 void udp_assoc_set_iplink(udp_assoc_t *assoc, service_id_t iplink) 194 { 195 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_assoc_set_iplink(%p, %zu)", 196 assoc, iplink); 197 fibril_mutex_lock(&assoc->lock); 198 assoc->ident.iplink = iplink; 199 fibril_mutex_unlock(&assoc->lock); 186 200 } 187 201 -
uspace/srv/net/udp/assoc.h
r4a90582 r695b6ff 36 36 #define ASSOC_H 37 37 38 #include <ipc/loc.h> 38 39 #include <sys/types.h> 39 40 #include "udp_type.h" … … 45 46 extern void udp_assoc_addref(udp_assoc_t *); 46 47 extern void udp_assoc_delref(udp_assoc_t *); 48 extern void udp_assoc_set_iplink(udp_assoc_t *, service_id_t); 47 49 extern void udp_assoc_set_foreign(udp_assoc_t *, udp_sock_t *); 48 50 extern void udp_assoc_set_local(udp_assoc_t *, udp_sock_t *); -
uspace/srv/net/udp/pdu.c
r4a90582 r695b6ff 215 215 return ENOMEM; 216 216 217 npdu->iplink = sp->iplink; 217 218 npdu->src = sp->local.addr; 218 219 npdu->dest = sp->foreign.addr; -
uspace/srv/net/udp/sock.c
r4a90582 r695b6ff 1 1 /* 2 2 * Copyright (c) 2008 Lukas Mejdrech 3 * Copyright (c) 201 2Jiri Svoboda3 * Copyright (c) 2013 Jiri Svoboda 4 4 * All rights reserved. 5 5 * … … 349 349 fibril_mutex_lock(&socket->lock); 350 350 351 if (inet_addr_is_any(&socket->assoc->ident.local.addr)) { 351 if (inet_addr_is_any(&socket->assoc->ident.local.addr) && 352 socket->assoc->ident.iplink == 0) { 352 353 /* Determine local IP address */ 353 354 inet_addr_t loc_addr; … … 665 666 static void udp_sock_setsockopt(udp_client_t *client, ipc_callid_t callid, ipc_call_t call) 666 667 { 667 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_setsockopt()"); 668 async_answer_0(callid, ENOTSUP); 669 } 668 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_setsockopt)"); 669 log_msg(LOG_DEFAULT, LVL_DEBUG, " - async_data_write_accept"); 670 671 void *data = NULL; 672 size_t data_len; 673 int rc = async_data_write_accept(&data, false, 0, 0, 0, &data_len); 674 if (rc != EOK) { 675 log_msg(LOG_DEFAULT, LVL_DEBUG, " - failed accepting data"); 676 async_answer_0(callid, rc); 677 return; 678 } 679 680 sysarg_t opt_level = SOL_SOCKET; 681 sysarg_t opt_name = SOCKET_GET_OPT_NAME(call); 682 683 if (opt_level != SOL_SOCKET || opt_name != SO_IPLINK || 684 data_len != sizeof(service_id_t)) { 685 log_msg(LOG_DEFAULT, LVL_DEBUG, " - failed opt_level/name/len"); 686 log_msg(LOG_DEFAULT, LVL_DEBUG, " - failed opt_level=%d, " 687 "opt_name=%d, data_len=%zu", (int)opt_level, (int)opt_name, 688 data_len); 689 async_answer_0(callid, EINVAL); 690 return; 691 } 692 693 log_msg(LOG_DEFAULT, LVL_DEBUG, " - call socket_cores_find"); 694 695 socket_core_t *sock_core = socket_cores_find(&client->sockets, 696 SOCKET_GET_SOCKET_ID(call)); 697 if (sock_core == NULL) { 698 log_msg(LOG_DEFAULT, LVL_DEBUG, " - failed getting sock_core"); 699 async_answer_0(callid, ENOENT); 700 return; 701 } 702 703 udp_sockdata_t *socket = 704 (udp_sockdata_t *) sock_core->specific_data; 705 706 service_id_t iplink = *(service_id_t *)data; 707 udp_uc_set_iplink(socket->assoc, iplink); 708 709 log_msg(LOG_DEFAULT, LVL_DEBUG, " - success"); 710 async_answer_0(callid, EOK); 711 } 712 670 713 671 714 static int udp_sock_recv_fibril(void *arg) … … 714 757 715 758 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_recv_fibril() exited loop"); 716 fibril_mutex_unlock(&sock->recv_buffer_lock);717 759 udp_uc_destroy(sock->assoc); 718 760 … … 730 772 /* Accept the connection */ 731 773 async_answer_0(iid, EOK); 774 775 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_sock_connection: begin"); 732 776 733 777 client.sess = async_callback_receive(EXCHANGE_SERIALIZE); -
uspace/srv/net/udp/ucall.c
r4a90582 r695b6ff 55 55 *assoc = nassoc; 56 56 return UDP_EOK; 57 } 58 59 void udp_uc_set_iplink(udp_assoc_t *assoc, service_id_t iplink) 60 { 61 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_uc_set_iplink(%p, %zu)", 62 assoc, iplink); 63 64 udp_assoc_set_iplink(assoc, iplink); 57 65 } 58 66 -
uspace/srv/net/udp/ucall.h
r4a90582 r695b6ff 36 36 #define UCALL_H 37 37 38 #include <ipc/loc.h> 38 39 #include <sys/types.h> 39 40 #include "udp_type.h" 40 41 41 42 extern udp_error_t udp_uc_create(udp_assoc_t **); 43 extern void udp_uc_set_iplink(udp_assoc_t *, service_id_t); 42 44 extern udp_error_t udp_uc_set_foreign(udp_assoc_t *, udp_sock_t *); 43 45 extern udp_error_t udp_uc_set_local(udp_assoc_t *, udp_sock_t *); -
uspace/srv/net/udp/udp_inet.c
r4a90582 r695b6ff 84 84 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_transmit_pdu()"); 85 85 86 dgram.iplink = pdu->iplink; 86 87 dgram.src = pdu->src; 87 88 dgram.dest = pdu->dest; -
uspace/srv/net/udp/udp_type.h
r4a90582 r695b6ff 38 38 #include <fibril.h> 39 39 #include <fibril_synch.h> 40 #include <ipc/loc.h> 40 41 #include <socket_core.h> 41 42 #include <sys/types.h> … … 71 72 72 73 typedef struct { 74 service_id_t iplink; 73 75 udp_sock_t local; 74 76 udp_sock_t foreign; … … 85 87 /** Encoded PDU */ 86 88 typedef struct { 89 /** IP link (optional) */ 90 service_id_t iplink; 87 91 /** Source address */ 88 92 inet_addr_t src; 89 93 /** Destination address */ 90 94 inet_addr_t dest; 91 92 95 /** Encoded PDU data including header */ 93 96 void *data; … … 143 146 /** Connection */ 144 147 udp_assoc_t *assoc; 148 /** User-configured IP link */ 149 service_id_t iplink; 145 150 /** Receiving fibril */ 146 151 fid_t recv_fibril;
Note:
See TracChangeset
for help on using the changeset viewer.