blob: e695718214ce97de4bdc9423734e9a4c425755a8 [file] [log] [blame]
Jiri Simsad7616c92015-03-24 23:44:30 -07001// Copyright 2015 The Vanadium 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
Jiri Simsa5293dcb2014-05-10 09:56:38 -07005package rt_test
6
7import (
8 "fmt"
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -08009 "io/ioutil"
Jiri Simsa5293dcb2014-05-10 09:56:38 -070010 "os"
11 "regexp"
12 "testing"
Cosmos Nicolaou59496fe2014-10-14 11:21:05 -070013 "time"
Jiri Simsa5293dcb2014-05-10 09:56:38 -070014
Cosmos Nicolaou0e4e3922015-06-10 16:30:09 -070015 "v.io/x/lib/vlog"
16
Cosmos Nicolaou1381f8a2015-03-13 09:40:34 -070017 "v.io/v23"
Matt Rosencrantz250558f2015-03-17 11:37:31 -070018 "v.io/v23/context"
Cosmos Nicolaou1381f8a2015-03-13 09:40:34 -070019 "v.io/v23/security"
Cosmos Nicolaou0e4e3922015-06-10 16:30:09 -070020
Todd Wang8123b5e2015-05-14 18:44:43 -070021 "v.io/x/ref"
Todd Wangb3511492015-04-07 23:32:34 -070022 vsecurity "v.io/x/ref/lib/security"
Cosmos Nicolaou1381f8a2015-03-13 09:40:34 -070023 "v.io/x/ref/test"
24 "v.io/x/ref/test/expect"
25 "v.io/x/ref/test/modules"
Jiri Simsa5293dcb2014-05-10 09:56:38 -070026)
27
Suharsh Sivakumard19c95d2015-02-19 14:44:50 -080028//go:generate v23 test generate
Jiri Simsa5293dcb2014-05-10 09:56:38 -070029
30func TestInit(t *testing.T) {
Todd Wang8123b5e2015-05-14 18:44:43 -070031 ref.EnvClearCredentials()
Jiri Simsa6ac95222015-02-23 16:11:49 -080032 ctx, shutdown := v23.Init()
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -080033 defer shutdown()
Matt Rosencrantzf1c3b442015-01-12 17:53:08 -080034
Matt Rosencrantz97d67a92015-01-27 21:03:12 -080035 l := vlog.Log
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -080036 fmt.Println(l)
Jiri Simsa5293dcb2014-05-10 09:56:38 -070037 args := fmt.Sprintf("%s", l)
Cosmos Nicolaou0e4e3922015-06-10 16:30:09 -070038 expected := regexp.MustCompile("name=vlog logdirs=\\[/tmp\\] logtostderr=true|false alsologtostderr=false|true max_stack_buf_size=4292608 v=[0-9] stderrthreshold=2 vmodule= log_backtrace_at=:0")
Jiri Simsa5293dcb2014-05-10 09:56:38 -070039 if !expected.MatchString(args) {
Cosmos Nicolaou0e4e3922015-06-10 16:30:09 -070040 t.Errorf("unexpected default args: %s, want %s", args, expected)
Jiri Simsa5293dcb2014-05-10 09:56:38 -070041 }
Jiri Simsa6ac95222015-02-23 16:11:49 -080042 p := v23.GetPrincipal(ctx)
Asim Shankar220a0152014-10-30 21:21:09 -070043 if p == nil {
44 t.Fatalf("A new principal should have been created")
45 }
46 if p.BlessingStore() == nil {
47 t.Fatalf("The principal must have a BlessingStore")
48 }
Asim Shankar2bf7b1e2015-02-27 00:45:12 -080049 if p.BlessingStore().Default().IsZero() {
50 t.Errorf("Principal().BlessingStore().Default() should not be the zero value")
Asim Shankar220a0152014-10-30 21:21:09 -070051 }
Asim Shankar2bf7b1e2015-02-27 00:45:12 -080052 if p.BlessingStore().ForPeer().IsZero() {
53 t.Errorf("Principal().BlessingStore().ForPeer() should not be the zero value")
Jiri Simsa5293dcb2014-05-10 09:56:38 -070054 }
55}
56
Todd Wang95873902015-05-22 14:21:30 -070057var child = modules.Register(func(env *modules.Env, args ...string) error {
Todd Wang60052d82015-05-22 15:00:10 -070058 _, shutdown := test.V23Init()
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -080059 defer shutdown()
Matt Rosencrantz0610a232014-12-04 10:26:39 -080060
Matt Rosencrantz97d67a92015-01-27 21:03:12 -080061 logger := vlog.Log
Matt Rosencrantz97eb5402015-01-08 14:51:52 -080062 vlog.Infof("%s\n", logger)
Todd Wang95873902015-05-22 14:21:30 -070063 fmt.Fprintf(env.Stdout, "%s\n", logger)
64 modules.WaitForEOF(env.Stdin)
65 fmt.Fprintf(env.Stdout, "done\n")
Cosmos Nicolaou59496fe2014-10-14 11:21:05 -070066 return nil
Todd Wang95873902015-05-22 14:21:30 -070067}, "child")
Jiri Simsa5293dcb2014-05-10 09:56:38 -070068
69func TestInitArgs(t *testing.T) {
Cosmos Nicolaou9e909842015-03-17 11:58:59 -070070 sh, err := modules.NewShell(nil, nil, testing.Verbose(), t)
Cosmos Nicolaou344cc4a2014-11-26 15:38:43 -080071 if err != nil {
72 t.Fatalf("unexpected error: %s", err)
73 }
Cosmos Nicolaou59496fe2014-10-14 11:21:05 -070074 defer sh.Cleanup(os.Stderr, os.Stderr)
Todd Wang95873902015-05-22 14:21:30 -070075 h, err := sh.Start(nil, child, "--logtostderr=true", "--vmodule=*=3", "--", "foobar")
Jiri Simsa5293dcb2014-05-10 09:56:38 -070076 if err != nil {
Cosmos Nicolaou59496fe2014-10-14 11:21:05 -070077 t.Fatalf("unexpected error: %s", err)
Jiri Simsa5293dcb2014-05-10 09:56:38 -070078 }
Cosmos Nicolaou0e4e3922015-06-10 16:30:09 -070079 h.Expect(fmt.Sprintf("name=vlog "+
Jiri Simsa5293dcb2014-05-10 09:56:38 -070080 "logdirs=[%s] "+
81 "logtostderr=true "+
82 "alsologtostderr=true "+
83 "max_stack_buf_size=4292608 "+
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080084 "v=0 "+
Jiri Simsa5293dcb2014-05-10 09:56:38 -070085 "stderrthreshold=2 "+
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080086 "vmodule=*=3 "+
Jiri Simsa5293dcb2014-05-10 09:56:38 -070087 "log_backtrace_at=:0",
Cosmos Nicolaou59496fe2014-10-14 11:21:05 -070088 os.TempDir()))
89 h.CloseStdin()
Cosmos Nicolaou9e909842015-03-17 11:58:59 -070090 h.Expect("done")
91 h.ExpectEOF()
Cosmos Nicolaou59496fe2014-10-14 11:21:05 -070092 h.Shutdown(os.Stderr, os.Stderr)
Jiri Simsa5293dcb2014-05-10 09:56:38 -070093}
Ankur7c890592014-10-02 11:36:28 -070094
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -080095func validatePrincipal(p security.Principal) error {
96 if p == nil {
97 return fmt.Errorf("nil principal")
Matt Rosencrantz0610a232014-12-04 10:26:39 -080098 }
Ankurd8646812015-03-12 10:48:41 -070099 call := security.NewCall(&security.CallParams{LocalPrincipal: p, RemoteBlessings: p.BlessingStore().Default()})
Matt Rosencrantz250558f2015-03-17 11:37:31 -0700100 ctx, cancel := context.RootContext()
101 defer cancel()
Todd Wang4264e4b2015-04-16 22:43:40 -0700102 blessings, rejected := security.RemoteBlessingNames(ctx, call)
Asim Shankar2bf7b1e2015-02-27 00:45:12 -0800103 if n := len(blessings); n != 1 {
104 return fmt.Errorf("rt.Principal().BlessingStore().Default() return blessings:%v (rejected:%v), want exactly one recognized blessing", blessings, rejected)
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -0800105 }
106 return nil
107}
108
109func defaultBlessing(p security.Principal) string {
Ankurd8646812015-03-12 10:48:41 -0700110 call := security.NewCall(&security.CallParams{LocalPrincipal: p, RemoteBlessings: p.BlessingStore().Default()})
Matt Rosencrantz250558f2015-03-17 11:37:31 -0700111 ctx, cancel := context.RootContext()
112 defer cancel()
Todd Wang4264e4b2015-04-16 22:43:40 -0700113 b, _ := security.RemoteBlessingNames(ctx, call)
Ryan Brown41093a92015-02-10 10:59:14 -0800114 return b[0]
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -0800115}
116
117func tmpDir(t *testing.T) string {
118 dir, err := ioutil.TempDir("", "rt_test_dir")
119 if err != nil {
120 t.Fatalf("unexpected error: %s", err)
121 }
122 return dir
123}
124
Todd Wang95873902015-05-22 14:21:30 -0700125var principal = modules.Register(func(env *modules.Env, args ...string) error {
Todd Wang60052d82015-05-22 15:00:10 -0700126 ctx, shutdown := test.V23Init()
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -0800127 defer shutdown()
Matt Rosencrantz0610a232014-12-04 10:26:39 -0800128
Jiri Simsa6ac95222015-02-23 16:11:49 -0800129 p := v23.GetPrincipal(ctx)
Matt Rosencrantzf1c3b442015-01-12 17:53:08 -0800130 if err := validatePrincipal(p); err != nil {
Ankur9f957942014-11-24 16:34:18 -0800131 return err
132 }
Todd Wang95873902015-05-22 14:21:30 -0700133 fmt.Fprintf(env.Stdout, "DEFAULT_BLESSING=%s\n", defaultBlessing(p))
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700134 return nil
Todd Wang95873902015-05-22 14:21:30 -0700135}, "principal")
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700136
137// Runner runs a principal as a subprocess and reports back with its
138// own security info and it's childs.
Todd Wang95873902015-05-22 14:21:30 -0700139var runner = modules.Register(func(env *modules.Env, args ...string) error {
Todd Wang60052d82015-05-22 15:00:10 -0700140 ctx, shutdown := test.V23Init()
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -0800141 defer shutdown()
142
Jiri Simsa6ac95222015-02-23 16:11:49 -0800143 p := v23.GetPrincipal(ctx)
Matt Rosencrantzf1c3b442015-01-12 17:53:08 -0800144 if err := validatePrincipal(p); err != nil {
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700145 return err
Ankur7c890592014-10-02 11:36:28 -0700146 }
Todd Wang95873902015-05-22 14:21:30 -0700147 fmt.Fprintf(env.Stdout, "RUNNER_DEFAULT_BLESSING=%v\n", defaultBlessing(p))
Cosmos Nicolaou9e909842015-03-17 11:58:59 -0700148 sh, err := modules.NewShell(ctx, p, false, nil)
Cosmos Nicolaou344cc4a2014-11-26 15:38:43 -0800149 if err != nil {
150 return err
151 }
Todd Wang95873902015-05-22 14:21:30 -0700152 if _, err := sh.Start(nil, principal, args...); err != nil {
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700153 return err
154 }
Suharsh Sivakumard02ac222014-11-18 14:02:15 -0800155 // Cleanup copies the output of sh to these Writers.
Todd Wang95873902015-05-22 14:21:30 -0700156 sh.Cleanup(env.Stdout, env.Stderr)
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700157 return nil
Todd Wang95873902015-05-22 14:21:30 -0700158}, "runner")
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700159
Suharsh Sivakumar4d36f812015-01-15 13:58:00 -0800160func createCredentialsInDir(t *testing.T, dir string, blessing string) {
161 principal, err := vsecurity.CreatePersistentPrincipal(dir, nil)
162 if err != nil {
163 t.Fatalf("unexpected error: %s", err)
164 }
165 if err := vsecurity.InitDefaultBlessings(principal, blessing); err != nil {
166 t.Fatalf("unexpected error: %s", err)
167 }
168}
169
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700170func TestPrincipalInheritance(t *testing.T) {
Cosmos Nicolaou9e909842015-03-17 11:58:59 -0700171 sh, err := modules.NewShell(nil, nil, testing.Verbose(), t)
Cosmos Nicolaou344cc4a2014-11-26 15:38:43 -0800172 if err != nil {
173 t.Fatalf("unexpected error: %s", err)
174 }
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700175 defer func() {
176 sh.Cleanup(os.Stdout, os.Stderr)
177 }()
178
Ankur9f957942014-11-24 16:34:18 -0800179 // Test that the child inherits from the parent's credentials correctly.
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700180 // The running test process may or may not have a credentials directory set
181 // up so we have to use a 'runner' process to ensure the correct setup.
182 cdir := tmpDir(t)
183 defer os.RemoveAll(cdir)
184
Ankur9f957942014-11-24 16:34:18 -0800185 createCredentialsInDir(t, cdir, "test")
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700186
187 // directory supplied by the environment.
Todd Wang8123b5e2015-05-14 18:44:43 -0700188 credEnv := []string{ref.EnvCredentials + "=" + cdir}
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700189
Todd Wang95873902015-05-22 14:21:30 -0700190 h, err := sh.Start(credEnv, runner)
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700191 if err != nil {
192 t.Fatalf("unexpected error: %s", err)
193 }
Ankur9f957942014-11-24 16:34:18 -0800194
Cosmos Nicolaou9e909842015-03-17 11:58:59 -0700195 runnerBlessing := h.ExpectVar("RUNNER_DEFAULT_BLESSING")
196 principalBlessing := h.ExpectVar("DEFAULT_BLESSING")
197 if err := h.Error(); err != nil {
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700198 t.Fatalf("failed to read input from children: %s", err)
199 }
200 h.Shutdown(os.Stdout, os.Stderr)
Ankur9f957942014-11-24 16:34:18 -0800201
202 wantRunnerBlessing := "test"
203 wantPrincipalBlessing := "test/child"
204 if runnerBlessing != wantRunnerBlessing || principalBlessing != wantPrincipalBlessing {
205 t.Fatalf("unexpected default blessing: got runner %s, principal %s, want runner %s, principal %s", runnerBlessing, principalBlessing, wantRunnerBlessing, wantPrincipalBlessing)
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700206 }
207
208}
209
210func TestPrincipalInit(t *testing.T) {
Ankur9f957942014-11-24 16:34:18 -0800211 // Collect the process' public key and error status
212 collect := func(sh *modules.Shell, env []string, args ...string) string {
Todd Wang95873902015-05-22 14:21:30 -0700213 h, err := sh.Start(env, principal, args...)
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700214 if err != nil {
215 t.Fatalf("unexpected error: %s", err)
216 }
217 s := expect.NewSession(t, h.Stdout(), time.Minute)
218 s.SetVerbosity(testing.Verbose())
Ankur9f957942014-11-24 16:34:18 -0800219 return s.ExpectVar("DEFAULT_BLESSING")
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700220 }
221
222 // A credentials directory may, or may, not have been already specified.
223 // Either way, we want to use our own, so we set it aside and use our own.
Todd Wang8123b5e2015-05-14 18:44:43 -0700224 origCredentialsDir := os.Getenv(ref.EnvCredentials)
225 defer os.Setenv(ref.EnvCredentials, origCredentialsDir)
226 if err := os.Setenv(ref.EnvCredentials, ""); err != nil {
Ankur7c890592014-10-02 11:36:28 -0700227 t.Fatal(err)
228 }
229
Ankura4b7c4a2015-02-02 11:41:24 -0800230 // We create two shells -- one initializing the principal for a child process
231 // via a credentials directory and the other via an agent.
Cosmos Nicolaou9e909842015-03-17 11:58:59 -0700232 sh, err := modules.NewShell(nil, nil, testing.Verbose(), t)
Cosmos Nicolaou344cc4a2014-11-26 15:38:43 -0800233 if err != nil {
234 t.Fatalf("unexpected error: %s", err)
235 }
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700236 defer sh.Cleanup(os.Stderr, os.Stderr)
237
Todd Wang60052d82015-05-22 15:00:10 -0700238 ctx, shutdown := test.V23Init()
Ankura4b7c4a2015-02-02 11:41:24 -0800239 defer shutdown()
240
Cosmos Nicolaou9e909842015-03-17 11:58:59 -0700241 agentSh, err := modules.NewShell(ctx, v23.GetPrincipal(ctx), testing.Verbose(), t)
Ankura4b7c4a2015-02-02 11:41:24 -0800242 if err != nil {
243 t.Fatalf("unexpected error: %s", err)
244 }
245 defer agentSh.Cleanup(os.Stderr, os.Stderr)
246
Todd Wang8123b5e2015-05-14 18:44:43 -0700247 // Test that with ref.EnvCredentials unset the runtime's Principal
Ankura4b7c4a2015-02-02 11:41:24 -0800248 // is correctly initialized for both shells.
249 if len(collect(sh, nil)) == 0 {
250 t.Fatalf("Without agent: child returned an empty default blessings set")
251 }
Cosmos Nicolaoua18a1eb2015-03-12 13:15:01 -0700252 if got, want := collect(agentSh, nil), test.TestBlessing+security.ChainSeparator+"child"; got != want {
Ankura4b7c4a2015-02-02 11:41:24 -0800253 t.Fatalf("With agent: got %q, want %q", got, want)
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700254 }
255
Todd Wang8123b5e2015-05-14 18:44:43 -0700256 // Test that credentials specified via the ref.EnvCredentials
Asim Shankar59b8b692015-03-30 01:23:36 -0700257 // environment variable take precedence over an agent.
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700258 cdir1 := tmpDir(t)
259 defer os.RemoveAll(cdir1)
Ankur9f957942014-11-24 16:34:18 -0800260 createCredentialsInDir(t, cdir1, "test_env")
Todd Wang8123b5e2015-05-14 18:44:43 -0700261 credEnv := []string{ref.EnvCredentials + "=" + cdir1}
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700262
Ankura4b7c4a2015-02-02 11:41:24 -0800263 if got, want := collect(sh, credEnv), "test_env"; got != want {
264 t.Errorf("Without agent: got default blessings: %q, want %q", got, want)
265 }
266 if got, want := collect(agentSh, credEnv), "test_env"; got != want {
267 t.Errorf("With agent: got default blessings: %q, want %q", got, want)
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700268 }
269
Ankura4b7c4a2015-02-02 11:41:24 -0800270 // Test that credentials specified via the command line take precedence over the
Todd Wang8123b5e2015-05-14 18:44:43 -0700271 // ref.EnvCredentials environment variable and also the agent.
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700272 cdir2 := tmpDir(t)
273 defer os.RemoveAll(cdir2)
Ankur9f957942014-11-24 16:34:18 -0800274 createCredentialsInDir(t, cdir2, "test_cmd")
Cosmos Nicolaoue5b41502014-10-29 22:55:09 -0700275
Asim Shankarf32d24d2015-04-01 16:34:26 -0700276 if got, want := collect(sh, credEnv, "--v23.credentials="+cdir2), "test_cmd"; got != want {
Ankura4b7c4a2015-02-02 11:41:24 -0800277 t.Errorf("Without agent: got %q, want %q", got, want)
278 }
Asim Shankarf32d24d2015-04-01 16:34:26 -0700279 if got, want := collect(agentSh, credEnv, "--v23.credentials="+cdir2), "test_cmd"; got != want {
Ankura4b7c4a2015-02-02 11:41:24 -0800280 t.Errorf("With agent: got %q, want %q", got, want)
Ankur7c890592014-10-02 11:36:28 -0700281 }
282}