ether.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* $OpenBSD: ether.c,v 1.10 2014/11/19 20:28:56 miod Exp $ */
  2. /* $NetBSD: ether.c,v 1.8 1996/10/13 02:29:00 christos Exp $ */
  3. /*
  4. * Copyright (c) 1992 Regents of the University of California.
  5. * All rights reserved.
  6. *
  7. * This software was developed by the Computer Systems Engineering group
  8. * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
  9. * contributed to Berkeley.
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. * 1. Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in the
  18. * documentation and/or other materials provided with the distribution.
  19. * 3. All advertising materials mentioning features or use of this software
  20. * must display the following acknowledgement:
  21. * This product includes software developed by the University of
  22. * California, Lawrence Berkeley Laboratory and its contributors.
  23. * 4. Neither the name of the University nor the names of its contributors
  24. * may be used to endorse or promote products derived from this software
  25. * without specific prior written permission.
  26. *
  27. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  28. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  29. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  30. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  31. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  32. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  33. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  34. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  35. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  36. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  37. * SUCH DAMAGE.
  38. *
  39. * @(#) Header: net.c,v 1.9 93/08/06 19:32:15 leres Exp (LBL)
  40. */
  41. #include <sys/param.h>
  42. #include <sys/socket.h>
  43. #include <net/if.h>
  44. #include <netinet/in.h>
  45. #include <netinet/if_ether.h>
  46. #include <netinet/ip.h>
  47. #include "stand.h"
  48. #include "net.h"
  49. #include "netif.h"
  50. /* Caller must leave room for ethernet header in front!! */
  51. ssize_t
  52. sendether(struct iodesc *d, void *pkt, size_t len, u_char *dea, int etype)
  53. {
  54. ssize_t n;
  55. struct ether_header *eh;
  56. #ifdef ETHER_DEBUG
  57. if (debug)
  58. printf("sendether: called\n");
  59. #endif
  60. eh = (struct ether_header *)pkt - 1;
  61. len += sizeof(*eh);
  62. MACPY(d->myea, eh->ether_shost); /* by byte */
  63. MACPY(dea, eh->ether_dhost); /* by byte */
  64. eh->ether_type = htons(etype);
  65. n = netif_put(d, eh, len);
  66. if (n < 0 || (size_t)n < sizeof(*eh))
  67. return (-1);
  68. n -= sizeof(*eh);
  69. return (n);
  70. }
  71. /*
  72. * Get a packet of any Ethernet type, with our address or
  73. * the broadcast address. Save the Ether type in arg 5.
  74. * NOTE: Caller must leave room for the Ether header.
  75. */
  76. ssize_t
  77. readether(struct iodesc *d, void *pkt, size_t len, time_t tleft,
  78. u_int16_t *etype)
  79. {
  80. ssize_t n;
  81. struct ether_header *eh;
  82. #ifdef ETHER_DEBUG
  83. if (debug)
  84. printf("readether: called\n");
  85. #endif
  86. eh = (struct ether_header *)pkt - 1;
  87. len += sizeof(*eh);
  88. n = netif_get(d, eh, len, tleft);
  89. if (n < 0 || (size_t)n < sizeof(*eh))
  90. return (-1);
  91. /* Validate Ethernet address. */
  92. if (bcmp(d->myea, eh->ether_dhost, 6) != 0 &&
  93. bcmp(bcea, eh->ether_dhost, 6) != 0) {
  94. #ifdef ETHER_DEBUG
  95. if (debug)
  96. printf("readether: not ours (ea=%s)\n",
  97. ether_sprintf(eh->ether_dhost));
  98. #endif
  99. return (-1);
  100. }
  101. *etype = ntohs(eh->ether_type);
  102. n -= sizeof(*eh);
  103. return (n);
  104. }
  105. /*
  106. * Convert Ethernet address to printable (loggable) representation.
  107. */
  108. static const char digits[] = "0123456789abcdef";
  109. const char *
  110. ether_sprintf(const u_char *ap)
  111. {
  112. int i;
  113. static char etherbuf[18];
  114. char *cp = etherbuf;
  115. for (i = 0; i < 6; i++) {
  116. *cp++ = digits[*ap >> 4];
  117. *cp++ = digits[*ap++ & 0xf];
  118. *cp++ = ':';
  119. }
  120. *--cp = 0;
  121. return (etherbuf);
  122. }