summaryrefslogtreecommitdiff
path: root/BCT/BytecodeTranslator/Phone/PhoneNavigationTraverser.cs
blob: 0fa4a8841cb8cdb766da4a0cfe5f171ca8b54ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Cci;
using Microsoft.Cci.MutableCodeModel;
using TranslationPlugins;

namespace BytecodeTranslator.Phone {
  public class PhoneNavigationCodeTraverser : CodeTraverser {
    private MetadataReaderHost host;
    private ITypeReference navigationSvcType;
    private ITypeReference cancelEventArgsType;
    private ITypeReference typeTraversed;
    private IMethodDefinition methodTraversed;
    private static HashSet<IMethodDefinition> navCallers= new HashSet<IMethodDefinition>();
    public static IEnumerable<IMethodDefinition> NavCallers { get { return navCallers; } }

    private HashSet<IMethodReference> navigationCallers;
    public IEnumerable<IMethodReference> NavigationCallers { get { return NavigationCallers; } }

    public PhoneNavigationCodeTraverser(MetadataReaderHost host, IEnumerable<IAssemblyReference> assemblies) : base() {
      this.host = host;
      List<IAssembly> assembliesTraversed = new List<IAssembly>();
      foreach (IAssemblyReference asmRef in assemblies) {
        assembliesTraversed.Add(asmRef.ResolvedAssembly);
      }

      Microsoft.Cci.Immutable.PlatformType platform = host.PlatformType as Microsoft.Cci.Immutable.PlatformType;
 
      // TODO obtain version, culture and signature data dynamically
      IAssemblyReference assembly= PhoneTypeHelper.getPhoneAssemblyReference(host);
      // TODO determine the needed types dynamically
      navigationSvcType = platform.CreateReference(assembly, "System", "Windows", "Navigation", "NavigationService");

      assembly = PhoneTypeHelper.getSystemAssemblyReference(host);
      cancelEventArgsType = platform.CreateReference(assembly, "System", "ComponentModel", "CancelEventArgs");
      navigationCallers = new HashSet<IMethodReference>();
    }

    public override void TraverseChildren(ITypeDefinition typeDef) {
      this.typeTraversed = typeDef;
      base.TraverseChildren(typeDef);
    }

    public override void TraverseChildren(IMethodDefinition method) {
      this.methodTraversed = method;
      if (method.IsConstructor && PhoneTypeHelper.isPhoneApplicationClass(typeTraversed, host)) {
        navigationCallers.Add(method);
        string mainPageUri = PhoneCodeHelper.instance().PhonePlugin.getMainPageXAML();
        SourceMethodBody sourceBody = method.Body as SourceMethodBody;
        if (sourceBody != null) {
          BlockStatement bodyBlock = sourceBody.Block as BlockStatement;
          if (bodyBlock != null) {
            Assignment uriInitAssign = new Assignment() {
              Source = new CompileTimeConstant() {
                Type = host.PlatformType.SystemString,
                Value = UriHelper.getURIBase(mainPageUri),
              },
              Type = host.PlatformType.SystemString,
              Target = new TargetExpression() {
                Type = host.PlatformType.SystemString,
                // TODO unify code for current uri fieldreference
                Definition = new FieldReference() {
                  ContainingType = PhoneCodeHelper.instance().getMainAppTypeReference(),
                  IsStatic=true,
                  Type=host.PlatformType.SystemString,
                  Name=host.NameTable.GetNameFor(PhoneCodeHelper.IL_CURRENT_NAVIGATION_URI_VARIABLE),
                  InternFactory= host.InternFactory,
                },
              },
            };
            Statement uriInitStmt= new ExpressionStatement() {
              Expression= uriInitAssign,
            };
            bodyBlock.Statements.Insert(0, uriInitStmt);
          }
        }
      }
      base.TraverseChildren(method);
    }


    private bool navCallFound=false;
    private bool navCallIsStatic = false;
    private bool navCallIsBack = false;
    private StaticURIMode currentStaticMode= StaticURIMode.NOT_STATIC;
    private string unpurifiedFoundURI="";

    public override void TraverseChildren(IBlockStatement block) {
      IList<Tuple<IStatement,StaticURIMode,string>> staticNavStmts = new List<Tuple<IStatement,StaticURIMode,string>>();
      IList<IStatement> nonStaticNavStmts = new List<IStatement>();
      foreach (IStatement statement in block.Statements) {
        navCallFound = false;
        navCallIsStatic = false;
        navCallIsBack = false;
        this.Traverse(statement);
        if (navCallFound) {
          navCallers.Add(methodTraversed);
          if (navCallIsStatic) {
            staticNavStmts.Add(new Tuple<IStatement, StaticURIMode, string>(statement, currentStaticMode, unpurifiedFoundURI));
          } else if (!navCallIsBack) {
            nonStaticNavStmts.Add(statement);
          }
        }
      }

      injectNavigationUpdateCode(block, staticNavStmts, nonStaticNavStmts);
    }

    private bool isNavigationOnBackKeyPressHandler(IMethodCall call, out string target) {
      target = null;
      if (!PhoneCodeHelper.instance().isBackKeyPressOverride(methodTraversed.ResolvedMethod))
        return false;

      if (!call.MethodToCall.ContainingType.isNavigationServiceClass(host))
        return false;

      if (!PhoneCodeHelper.NAV_CALLS.Contains(call.MethodToCall.Name.Value) || call.MethodToCall.Name.Value == "GoBack") // back is actually ok
        return false;

      if (call.MethodToCall.Name.Value == "Navigate") {
        try {
          IExpression expr = call.Arguments.First();
          bool isStatic = UriHelper.isArgumentURILocallyCreatedStatic(expr, host, out target) ||
                         UriHelper.isArgumentURILocallyCreatedStaticRoot(expr, host, out target);
          if (!isStatic)
            target = "--Other non inferrable target--";
          else
            target = UriHelper.getURIBase(target);
        } catch (InvalidOperationException) { 
        }
      }

      return true;
    }

    private bool isCancelOnBackKeyPressHandler(IMethodCall call) {
      if (!PhoneCodeHelper.instance().isBackKeyPressOverride(methodTraversed.ResolvedMethod))
        return false;

      return isEventCancellationMethodCall(call);
    }

    private bool isEventCancellationMethodCall(IMethodCall call) {
      if (!call.MethodToCall.Name.Value.StartsWith("set_Cancel"))
        return false;

      if (call.Arguments.Count() != 1 || call.Arguments.ToList()[0].Type != host.PlatformType.SystemBoolean)
        return false;

      if (call.ThisArgument == null || !call.ThisArgument.Type.isCancelEventArgsClass(host))
        return false;

      ICompileTimeConstant constant = call.Arguments.ToList()[0] as ICompileTimeConstant;
      if (constant != null && constant.Value != null) {
        CompileTimeConstant falseConstant = new CompileTimeConstant() {
          Type = host.PlatformType.SystemBoolean,
          Value = false,
        };
        if (constant.Value == falseConstant.Value)
          return false;
      }

      return true;
    }

    public override void TraverseChildren(IMethodCall methodCall) {
      string target;
      if (isNavigationOnBackKeyPressHandler(methodCall, out target)) {
        ICollection<Tuple<IMethodReference,string>> targets;
        try {
          targets= PhoneCodeHelper.instance().BackKeyNavigatingOffenders[typeTraversed];
        } catch (KeyNotFoundException) {
          targets = new HashSet<Tuple<IMethodReference,string>>();
        }
        targets.Add(Tuple.Create<IMethodReference,string>(methodTraversed, "\"" + target + "\""));
        PhoneCodeHelper.instance().BackKeyNavigatingOffenders[typeTraversed]= targets;
      } else if (isCancelOnBackKeyPressHandler(methodCall)) {
        PhoneCodeHelper.instance().BackKeyCancellingOffenders.Add(Tuple.Create<ITypeReference, string>(typeTraversed,""));
      }

      // re-check whether it is an event cancellation call
      if (isEventCancellationMethodCall(methodCall)) {
        PhoneCodeHelper.instance().KnownEventCancellingMethods.Add(methodTraversed);
      }

      // check whether it is a NavigationService call
      IMethodReference methodToCall= methodCall.MethodToCall;
      ITypeReference callType= methodToCall.ContainingType;
      if (!callType.ResolvedType.Equals(navigationSvcType.ResolvedType))
        return;

      string methodToCallName= methodToCall.Name.Value;
      if (!PhoneCodeHelper.NAV_CALLS.Contains(methodToCallName))
        return;

      navCallFound = true;
      // TODO check what to do with these
      if (methodToCallName == "GoForward" || methodToCallName == "StopLoading") {
        // TODO forward navigation is not supported by the phone
        // TODO StopLoading is very async, I don't think we may verify this behaviour
        // TODO possibly log
        return;
      } else {
        currentStaticMode = StaticURIMode.NOT_STATIC;
        if (methodToCallName == "GoBack") {
          navCallIsStatic = false;
          navCallIsBack = true;
        } else { // Navigate()
          navCallIsBack = false;

          // check for different static patterns that we may be able to verify
          IExpression uriArg = methodCall.Arguments.First();
          if (UriHelper.isArgumentURILocallyCreatedStatic(uriArg, host, out unpurifiedFoundURI)) {
            navCallIsStatic = true;
            currentStaticMode = StaticURIMode.STATIC_URI_CREATION_ONSITE;
          } else if (UriHelper.isArgumentURILocallyCreatedStaticRoot(uriArg, host, out unpurifiedFoundURI)) {
            navCallIsStatic = true;
            currentStaticMode = StaticURIMode.STATIC_URI_ROOT_CREATION_ONSITE;
          } else {
            // get reason
            //ICreateObjectInstance creationSite = methodCall.Arguments.First() as ICreateObjectInstance;
            //if (creationSite == null)
            //  notStaticReason = "URI not created at call site";
            //else
            //  notStaticReason = "URI not initialized as a static string";
          }
        }

        if (navCallFound && !navCallIsBack) {
          // check this method as a navigation method
          PhoneCodeHelper.instance().KnownNavigatingMethods.Add(methodTraversed);
        }

        //Console.Write("Page navigation event found. Target is static? " + (isStatic ? "YES" : "NO"));
        //if (!isStatic) {
        //  Console.WriteLine(" -- Reason: " + notStaticReason);
        //} else {
        //  Console.WriteLine("");
        //}
      }
    }

    private void injectNavigationUpdateCode(IBlockStatement block, IEnumerable<Tuple<IStatement,StaticURIMode, string>> staticStmts, IEnumerable<IStatement> nonStaticStmts) {
      // TODO Here there is the STRONG assumption that a given method will only navigate at most once per method call
      // TODO (or at most will re-navigate to the same page). Quick "page flipping" on the same method
      // TODO would not be captured correctly
      Microsoft.Cci.MutableCodeModel.BlockStatement mutableBlock = block as Microsoft.Cci.MutableCodeModel.BlockStatement;
      
      foreach (IStatement stmt in nonStaticStmts) {
        int ndx = mutableBlock.Statements.ToList().IndexOf(stmt);
        if (ndx == -1) {
          // can't be
          throw new IndexOutOfRangeException("Statement must exist in original block");
        }

        Assignment currentURIAssign = new Assignment() {
          Source = new CompileTimeConstant() {
            Type = host.PlatformType.SystemString,
            Value = PhoneCodeHelper.BOOGIE_DO_HAVOC_CURRENTURI,
          },
          Type = host.PlatformType.SystemString,
          Target = new TargetExpression() {
            Type = host.PlatformType.SystemString,
            // TODO unify code for current uri fieldreference
            Definition = new FieldReference() {
              ContainingType = PhoneCodeHelper.instance().getMainAppTypeReference(),
              IsStatic= true,
              Type = host.PlatformType.SystemString,
              Name = host.NameTable.GetNameFor(PhoneCodeHelper.IL_CURRENT_NAVIGATION_URI_VARIABLE),
              InternFactory=host.InternFactory,
            },
          },
        };
        Statement uriInitStmt = new ExpressionStatement() {
          Expression = currentURIAssign,
        };
        mutableBlock.Statements.Insert(ndx + 1, uriInitStmt);
      }


      foreach (Tuple<IStatement, StaticURIMode, string> entry in staticStmts) {
        int ndx= mutableBlock.Statements.ToList().IndexOf(entry.Item1);
        if (ndx == -1) {
          // can't be
          throw new IndexOutOfRangeException("Statement must exist in original block");
        }

        Assignment currentURIAssign = new Assignment() {
          Source = new CompileTimeConstant() {
            Type = host.PlatformType.SystemString,
            Value = UriHelper.getURIBase(entry.Item3).ToLower(),
          },
          Type = host.PlatformType.SystemString,
          Target = new TargetExpression() {
            Type = host.PlatformType.SystemString,
            // TODO unify code for current uri fieldreference
            Definition = new FieldReference() {
              ContainingType = PhoneCodeHelper.instance().getMainAppTypeReference(),
              IsStatic= true,
              Type = host.PlatformType.SystemString,
              Name = host.NameTable.GetNameFor(PhoneCodeHelper.IL_CURRENT_NAVIGATION_URI_VARIABLE),
              InternFactory=host.InternFactory,
            },
          },
        };
        Statement uriInitStmt = new ExpressionStatement() {
          Expression = currentURIAssign,
        };
        mutableBlock.Statements.Insert(ndx+1, uriInitStmt);
      }
    }
  }

  /// <summary>
  /// Traverse metadata looking only for PhoneApplicationPage's constructors
  /// </summary>
  public class PhoneNavigationMetadataTraverser : MetadataTraverser {
    private MetadataReaderHost host;
    private ITypeDefinition typeBeingTraversed;
    private PhoneNavigationCodeTraverser codeTraverser;

    public PhoneNavigationMetadataTraverser(MetadataReaderHost host)
      : base() {
      this.host = host;
    }

    public override void TraverseChildren(IModule module) {
      codeTraverser = new PhoneNavigationCodeTraverser(host, module.AssemblyReferences);
      base.Traverse(module.AssemblyReferences);
      base.TraverseChildren(module);
    }


    // TODO can we avoid visiting every type? Are there only a few, identifiable, types that may perform navigation?
    public override void TraverseChildren(ITypeDefinition typeDefinition) {
      typeBeingTraversed = typeDefinition;
      if (typeDefinition.isPhoneApplicationClass(host)) {
        NamespaceTypeDefinition mutableTypeDef = typeDefinition as NamespaceTypeDefinition;
        if (mutableTypeDef != null) {
          // TODO unify code for current uri fieldreference
          FieldDefinition fieldDef = new FieldDefinition() {
            ContainingTypeDefinition= mutableTypeDef,
            InternFactory= host.InternFactory,
            IsStatic= true,
            Name= host.NameTable.GetNameFor(PhoneCodeHelper.IL_CURRENT_NAVIGATION_URI_VARIABLE),
            Type= host.PlatformType.SystemString,
            Visibility= TypeMemberVisibility.Public,
          };
          PhoneCodeHelper.CurrentURIFieldDefinition = fieldDef;
          mutableTypeDef.Fields.Add(fieldDef);
        }
      }

      codeTraverser.Traverse(typeDefinition);
      base.TraverseChildren(typeDefinition);
    }

    // TODO same here. Are there specific methods (and ways to identfy those) that can perform navigation?
    public override void TraverseChildren(IMethodDefinition method) {
      if (PhoneCodeHelper.instance().isBackKeyPressOverride(method)) {
        PhoneCodeHelper.instance().KnownBackKeyHandlers.Add(method);
        PhoneCodeHelper.instance().OnBackKeyPressOverriden = true;
      }
      base.TraverseChildren(method);
    }

    public void InjectPhoneCodeAssemblies(IEnumerable<IUnit> assemblies) {
      foreach (var a in assemblies) {
        this.Traverse((IAssembly)a);
      }
    }
  }
}