veyron/profiles: first pass at implementing profiles.

Please see comments in veyron/profiles/doc.go

Change-Id: I514c0dfe7d03221314d45686aadd5054e39324dc
diff --git a/profiles/platform_linux.go b/profiles/platform_linux.go
new file mode 100644
index 0000000..b38e12c
--- /dev/null
+++ b/profiles/platform_linux.go
@@ -0,0 +1,32 @@
+// +build linux
+
+package profiles
+
+import (
+	"fmt"
+	"syscall"
+
+	"veyron2"
+	"veyron2/security"
+)
+
+// Platform returns the description of the Platform this process is running on.
+// A default value for veyron2.Platform is provided even if an error is
+// returned; nil is never returned for the first return result.
+func Platform() (*veyron2.Platform, error) {
+	var uts syscall.Utsname
+	if err := syscall.Uname(&uts); err != nil {
+		return &veyron2.Platform{}, err
+	}
+	d := &veyron2.Platform{
+		Vendor:  "google",
+		Model:   "generic",
+		System:  utsStr(uts.Sysname[:]),
+		Version: utsStr(uts.Version[:]),
+		Release: utsStr(uts.Release[:]),
+		Machine: utsStr(uts.Machine[:]),
+		Node:    utsStr(uts.Nodename[:]),
+	}
+	d.Identity = security.FakePublicID(fmt.Sprintf("%s/%s/%s", d.Vendor, d.Model, d.Node))
+	return d, nil
+}