以太坊中的消息调用流程

以太坊 Yellow Paper 学习笔记(四)

Posted by Nicodechal on 2020-10-23

之前已经提到过,交易有两种类型,一种是消息调用,使用 Θ\Theta 表示,合约创建其实就是创建账户的过程,账户是包含合约代码的账户。

(σ,g,A,z,o)Θ(σ,s,o,r,c,g,p,v,v~,d,e,w)(\mathbf{\sigma'},g',A,z,\mathbf{o})\equiv\Theta(\mathbf{\sigma},s,o,r,c,g,p,v,\tilde{v},\mathbf{d},e,w)

上面是完整的创建函数定义,输入参数定义如下:

  1. σ\mathbf{\sigma},执行前的状态,此状态是已经完成交易前操作的状态,即从发送方账户扣掉 TgTpT_gT_p,同时 nonce 加一了。
  2. ss,发送方账户。
  3. oo,原始的交易发起者。当合约创建和消息调用过程不是直接通过交易发起的而是由代码触发时会和发起者不同。
  4. rr,接收方账户。
  5. cc,被执行代码的账户,通常就是接收方账户。
  6. gg,可用的 gas。
  7. pp,gasprice。
  8. vv,发送方给接收方得金额。
  9. v~\tilde{v},表示进行合约方法调用时的输入。
  10. d\mathbf{d},消息调用的输入。
  11. ee,此时的栈深度。
  12. ww,代表对状态修改的权限。

输出之前介绍过前 4 个,第五个 o\mathbf{o} 为执行消息调用后的返回值,如果是调用合约即为代码执行的返回值,如果只是转账该值被忽略。

下面定义转账后的状态为 σ1\mathbf{\sigma}_1,则有:

σ1[r]bσ[r]b+v  σ1[s]bσ[s]bv\mathbf{\sigma}_1[r]_b\equiv\mathbf{\sigma}[r]_b+v\ \wedge\ \mathbf{\sigma}_1[s]_b\equiv\mathbf{\sigma}[s]_b-v

如果接收方的账户不存在,则会创建一个账户,流程和创建合约账户类似:

σ1σ1 except:σ1[s]{if σ1[s]= v=0a1otherwisea1(σ1[s]n,σ1[s]bv,σ1[s]s,σ1[s]c)and σ1σ except:{σ1[r](0,v,TRIE(),KEC(()))if σ[r]=  v0σ1[r]if σ[r]=  v=0σ1[r]a1otherwisea1(σ[r]n,σ[r]bv,σ[r]s,σ[r]c)\begin{aligned} \mathbf{\sigma}_1 &\equiv \mathbf{\sigma}_1'\ \mathrm{except}:\\\\ \mathbf{\sigma}_1[s] &\equiv \left\{ \begin{array}{} \emptyset & if\ \mathbf{\sigma}_1'[s]=\emptyset\ \wedge v=0 \\ \mathbf{a}_1 & \mathrm{otherwise} \end{array} \right. \\\\ \mathbf{a}_1 &\equiv (\mathbf{\sigma}_1'[s]_n,\mathbf{\sigma}_1'[s]_b - v, \mathbf{\sigma}_1'[s]_\mathbf{s},\mathbf{\sigma}_1'[s]_c) \\\\ \mathrm{and}\ \mathbf{\sigma}_1'&\equiv \mathbf{\sigma}\ \mathrm{except}: \\\\ & \left\{ \begin{array}{} \mathbf{\sigma}_1'[r]\equiv(0,v,\mathtt{TRIE}(\emptyset),\mathtt{KEC}(())) & if\ \mathbf{\sigma}[r]=\emptyset\ \wedge\ v\neq0 \\ \mathbf{\sigma}_1'[r]\equiv\emptyset & if\ \mathbf{\sigma}[r]=\emptyset\ \wedge\ v=0 \\ \mathbf{\sigma}_1'[r]\equiv\mathbf{a}_1'& \mathrm{otherwise} \end{array} \right. \\\\ \mathbf{a}_1' &\equiv (\mathbf{\sigma}[r]_n,\mathbf{\sigma}[r]_b - v, \mathbf{\sigma}[r]_\mathbf{s},\mathbf{\sigma}[r]_c) \\\\ \end{aligned}

接着账户的代码会被执行 ( 就是账户 codeHash 对应的代码 )。和创建账户一样,如果出现异常,gas 不会返还,同时状态会直接会退到转账之前 (即 σ\mathbf{\sigma} 状态)。

σ{σif σ=σotherwiseg{0if σ= o=gotherwisez{0if σ=1otherwise(σ,g,A,o)ΞIarIooIppIddIssIvv~IeeIwwt{s,r}Let KEC(Ib)=σ[c]c\begin{aligned} \mathbf{\sigma}' &\equiv \left\{ \begin{array}{} \mathbf{\sigma} & \mathrm{if}\ \mathbf{\sigma}^{\star\star}=\emptyset \\ \mathbf{\sigma}^{\star\star} & \mathrm{otherwise} \end{array} \right. \\\\ g' &\equiv \left\{ \begin{array}{} 0 & \mathrm{if}\ \mathbf{\sigma}^{\star\star}=\emptyset\ \wedge \mathbf{o}=\emptyset \\ g^{\star\star} & \mathrm{otherwise} \end{array} \right. \\\\ z &\equiv \left\{ \begin{array}{} 0 & \mathrm{if}\ \mathbf{\sigma}^{\star\star}=\emptyset \\ 1 & \mathrm{otherwise} \end{array} \right. \\\\ (\mathbf{\sigma}^{\star\star},g^{\star\star},A,\mathbf{o}) & \equiv\Xi \\ I_\mathrm{a} &\equiv r \\ I_\mathrm{o} &\equiv o \\ I_\mathrm{p} &\equiv p \\ I_\mathrm{\mathbf{d}}&\equiv \mathrm{\mathbf{d}}\\ I_\mathrm{s} &\equiv s \\ I_\mathrm{v} &\equiv \tilde{v} \\ I_\mathrm{e} &\equiv e \\ I_\mathrm{w} &\equiv w \\ \mathbf{t} &\equiv \{s, r\} \\\\ \mathrm{Let}\ \mathtt{KEC}(I_\mathrm{\mathbf{b}}) &= \mathbf{\sigma}[c]_c \end{aligned}

其中 Ξ\Xi 定义如下:

Ξ{ΞECREC(σ1,g,I,t)if r=1ΞSHA256(σ1,g,I,t)if r=2ΞRIP160(σ1,g,I,t)if r=3ΞID(σ1,g,I,t)if r=4ΞEXPMOD(σ1,g,I,t)if r=5ΞBNADD(σ1,g,I,t)if r=6ΞBNMUL(σ1,g,I,t)if r=7ΞZNARKV(σ1,g,I,t)if r=8Ξ(σ1,g,I,t)otherwise\Xi\equiv \left\{ \begin{array}{} \Xi_{\mathtt{ECREC}}(\mathbf{\sigma}_1,g,I,\mathbf{\mathrm{t}}) & if\ r=1 \\ \Xi_{\mathtt{SHA256}}(\mathbf{\sigma}_1,g,I,\mathbf{\mathrm{t}}) & if\ r=2 \\ \Xi_{\mathtt{RIP160}}(\mathbf{\sigma}_1,g,I,\mathbf{\mathrm{t}}) & if\ r=3 \\ \Xi_{\mathtt{ID}}(\mathbf{\sigma}_1,g,I,\mathbf{\mathrm{t}}) & if\ r=4 \\ \Xi_{\mathtt{EXPMOD}}(\mathbf{\sigma}_1,g,I,\mathbf{\mathrm{t}}) & if\ r=5 \\ \Xi_{\mathtt{BN_ADD}}(\mathbf{\sigma}_1,g,I,\mathbf{\mathrm{t}}) & if\ r=6 \\ \Xi_{\mathtt{BN_MUL}}(\mathbf{\sigma}_1,g,I,\mathbf{\mathrm{t}}) & if\ r=7 \\ \Xi_{\mathtt{ZNARKV}}(\mathbf{\sigma}_1,g,I,\mathbf{\mathrm{t}}) & if\ r=8 \\ \Xi(\mathbf{\sigma}_1,g,I,\mathbf{\mathrm{t}}) & \mathrm{otherwise} \end{array} \right.

前八个为以太坊预置得的智能合约。