blob: 8a14cb2320299c04eef2f6c6b21a016a017219ac [file] [log] [blame]
Ian Lance Taylor98607ac2011-09-16 08:09:31 -07001// Copyright 2011 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// Network interface identification
6
7package net
8
9import (
10 "bytes"
11 "fmt"
12 "os"
13)
14
15// A HardwareAddr represents a physical hardware address.
16type HardwareAddr []byte
17
18func (a HardwareAddr) String() string {
19 var buf bytes.Buffer
20 for i, b := range a {
21 if i > 0 {
22 buf.WriteByte(':')
23 }
24 fmt.Fprintf(&buf, "%02x", b)
25 }
26 return buf.String()
27}
28
29// Interface represents a mapping between network interface name
30// and index. It also represents network interface facility
31// information.
32type Interface struct {
33 Index int // positive integer that starts at one, zero is never used
34 MTU int // maximum transmission unit
35 Name string // e.g., "en0", "lo0", "eth0.100"
36 HardwareAddr HardwareAddr // IEEE MAC-48, EUI-48 and EUI-64 form
37 Flags Flags // e.g., FlagUp, FlagLoopback, FlagMulticast
38}
39
40type Flags uint
41
42const (
43 FlagUp Flags = 1 << iota // interface is up
44 FlagBroadcast // interface supports broadcast access capability
45 FlagLoopback // interface is a loopback interface
46 FlagPointToPoint // interface belongs to a point-to-point link
47 FlagMulticast // interface supports multicast access capability
48)
49
50var flagNames = []string{
51 "up",
52 "broadcast",
53 "loopback",
54 "pointtopoint",
55 "multicast",
56}
57
58func (f Flags) String() string {
59 s := ""
60 for i, name := range flagNames {
61 if f&(1<<uint(i)) != 0 {
62 if s != "" {
63 s += "|"
64 }
65 s += name
66 }
67 }
68 if s == "" {
69 s = "0"
70 }
71 return s
72}
73
74// Addrs returns interface addresses for a specific interface.
75func (ifi *Interface) Addrs() ([]Addr, os.Error) {
76 if ifi == nil {
77 return nil, os.NewError("net: invalid interface")
78 }
79 return interfaceAddrTable(ifi.Index)
80}
81
82// MulticastAddrs returns multicast, joined group addresses for
83// a specific interface.
84func (ifi *Interface) MulticastAddrs() ([]Addr, os.Error) {
85 if ifi == nil {
86 return nil, os.NewError("net: invalid interface")
87 }
88 return interfaceMulticastAddrTable(ifi.Index)
89}
90
91// Interfaces returns a list of the systems's network interfaces.
92func Interfaces() ([]Interface, os.Error) {
93 return interfaceTable(0)
94}
95
96// InterfaceAddrs returns a list of the system's network interface
97// addresses.
98func InterfaceAddrs() ([]Addr, os.Error) {
99 return interfaceAddrTable(0)
100}
101
102// InterfaceByIndex returns the interface specified by index.
103func InterfaceByIndex(index int) (*Interface, os.Error) {
104 if index <= 0 {
105 return nil, os.NewError("net: invalid interface index")
106 }
107 ift, err := interfaceTable(index)
108 if err != nil {
109 return nil, err
110 }
111 for _, ifi := range ift {
112 return &ifi, nil
113 }
114 return nil, os.NewError("net: no such interface")
115}
116
117// InterfaceByName returns the interface specified by name.
118func InterfaceByName(name string) (*Interface, os.Error) {
119 if name == "" {
120 return nil, os.NewError("net: invalid interface name")
121 }
122 ift, err := interfaceTable(0)
123 if err != nil {
124 return nil, err
125 }
126 for _, ifi := range ift {
127 if name == ifi.Name {
128 return &ifi, nil
129 }
130 }
131 return nil, os.NewError("net: no such interface")
132}