[go: up one dir, main page]

File: ftp2.pml

package info (click to toggle)
a2ps 1%3A4.14-1.3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 13,324 kB
  • sloc: ansic: 26,966; sh: 11,844; lex: 2,286; perl: 1,156; yacc: 757; makefile: 609; lisp: 398; ada: 263; objc: 189; f90: 109; ml: 85; sql: 74; pascal: 57; modula3: 33; haskell: 32; sed: 30; java: 29; python: 24
file content (455 lines) | stat: -rw-r--r-- 12,172 bytes parent folder | download | duplicates (16)
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/* 
 * File Transfer Protocol 
 * 
 * Promela (Protocol Meta Language) 
 * 
 * J-Ph Cottin 12/96 (inspired by Gerard J. Holzmann) 
 */ 
 
 
/* 
 * Global Definitions 
 */ 
 
#define LOSS           0    /* message loss   */ 
#define DUPS           0    /* duplicate msgs */    
#define QSZ            2    /* queue size */ 
 
mtype = { 
  red, white, blue, 
  abort, accept, ack, sync_ack, close, connect, 
  create, data, eof, open, reject, sync, transfer,  
  FATAL, NON_FATAL, COMPLETE 
 } 
 
 
/*chan use_to_pres[2] = [QSZ] of {byte}; 
chan pres_to_use[2] = [QSZ] of {byte}; 
chan pres_to_ses[2] = [QSZ] of {byte}; 
 
chan ses_to_pres[2] = [QSZ] of {byte,byte}; 
chan ses_to_flow[2] = [QSZ] of {byte,byte}; 
chan flow_to_ses[2] = [QSZ] of {byte,byte}; 
chan dll_to_flow[2] = [QSZ] of {byte,byte}; 
chan flow_to_dll[2] = [QSZ] of {byte,byte}; 
 
chan ses_to_fsrv[2] = [QSZ] of {byte}; 
chan fsrv_to_ses[2] = [QSZ] of {byte}; */
 
chan use_to_pres[2] = [QSZ] of {mtype}; 
chan pres_to_use[2] = [QSZ] of {mtype}; 
chan pres_to_ses[2] = [QSZ] of {mtype}; 
 
chan ses_to_pres[2] = [QSZ] of {mtype,byte}; 
chan ses_to_flow[2] = [QSZ] of {mtype,byte}; 
chan flow_to_ses[2] = [QSZ] of {mtype,byte}; 
chan dll_to_flow[2] = [QSZ] of {mtype,byte}; 
chan flow_to_dll[2] = [QSZ] of {mtype,byte}; 
 
chan ses_to_fsrv[2] = [QSZ] of {mtype}; 
chan fsrv_to_ses[2] = [QSZ] of {mtype}; 
  
/* 
 * User Layer Validation Model 
 */ 
 
proctype userprc ( bit n) 
{ 
  use_to_pres[n]!transfer; 
  if 
    :: pres_to_use[n]?accept -> goto Done 
    :: pres_to_use[n]?reject -> goto Done 
    :: use_to_pres[n]!abort  -> goto Aborted 
  fi; 
Aborted: 
  if 
    :: pres_to_use[n]?accept -> goto Done 
    :: pres_to_use[n]?reject -> goto Done 
  fi; 
Done: 
  skip 
    } 
 
 
/* 
 * Presentation Layer Validation Model 
 */ 
 
proctype present(bit n) 
{ 
  byte status, uabort; 
 
endIDLE: 
  do 
    :: use_to_pres[n]?transfer -> 
                   uabort = 0; 
                   break 
    ::  use_to_pres[n]?abort -> 
                   skip 
  od; 
 
TRANSFER: 
  pres_to_ses[n]!transfer; 
  do 
    :: use_to_pres[n]?abort -> 
         if 
        :: (!uabort) -> 
                   uabort = 1; 
                   pres_to_ses[n]!abort 
        :: (uabort) -> 
                   assert(1+1!=2) 
         fi 
    :: ses_to_pres[n]?accept,0 -> 
         goto DONE
    :: ses_to_pres[n]?reject(status) ->
         if 
           :: (status == FATAL || uabort) -> 
                     goto FAIL 
           :: (status == NON_FATAL && !uabort) -> 
                     goto TRANSFER 
         fi 
  od ;
 
DONE: 
  pres_to_use[n]!accept; 
  goto endIDLE; 
FAIL: 
  pres_to_use[n]!reject; 
  goto endIDLE 
    } 
 
/* 
 * Session Layer Validation Model 
 */    
 
 
proctype session (bit n)  
{ 
    bit toggle; 
    byte type, status; 
 
endIDLE: 
 do 
   :: pres_to_ses[n]?type -> 
       if 
         :: (type == transfer) ->  
                   goto DATA_OUT 
      :: (type != transfer)      /* ignore */ 
       fi 
   :: flow_to_ses[n]?type, 0 -> 
       if 
         :: (type == connect) ->  
                   goto DATA_IN 
      :: (type != connect)      /* ignore */ 
       fi 
 od; 
 
DATA_IN:          /* 1. prepare local file fsrver  */ 
  ses_to_fsrv[n]!create; 
  do 
    :: fsrv_to_ses[n]?reject -> 
             ses_to_flow[n]!reject,0; 
             goto endIDLE 
    :: fsrv_to_ses[n]?accept -> 
             ses_to_flow[n]!accept,0; 
             break 
  od; 
             /* 2. Receive the data, upto eof */ 
  do 
    :: flow_to_ses[n]?data,0 -> 
             ses_to_fsrv[n]!data 
    :: flow_to_ses[n]?eof,0 -> 
             ses_to_fsrv[n]!eof; 
             break 
    :: pres_to_ses[n]?transfer -> 
             ses_to_pres[n]!reject(NON_FATAL) 
    :: flow_to_ses[n]?close,0 ->        /* remote user aborted */ 
             ses_to_fsrv[n]!close; 
             break 
    :: timeout ->                       /* got disconnect */ 
             ses_to_fsrv[n]!close; 
             goto endIDLE 
  od; 
                          /* 3. Close the connection */ 
  ses_to_flow[n]!close,0; 
  goto endIDLE; 
 
DATA_OUT:                  /* 1. prepare local file fsver */ 
  ses_to_fsrv[n]!open; 
  if 
   :: fsrv_to_ses[n]?reject -> 
         ses_to_pres[n]!reject(FATAL); 
          goto endIDLE 
   :: fsrv_to_ses[n]?accept -> 
        skip 
 fi; 
                                      /* 2. Initialize flow control */ 
 ses_to_flow[n]!sync,toggle; 
 do 
   :: atomic { 
           flow_to_ses[n]?sync_ack,type -> 
                 if 
                   :: (type!= toggle) 
                   :: (type == toggle) -> break 
                fi 
          } 
 :: timeout -> 
            ses_to_fsrv[n]!close; 
            ses_to_pres[n]!reject(FATAL); 
            goto endIDLE 
od; 
 toggle = 1 - toggle; 
                                    /* 3. Prepare remote file fsrver */ 
 ses_to_flow[n]!connect,0; 
 if  
   :: flow_to_ses[n]?reject,0 -> 
         ses_to_fsrv[n]!close; 
         ses_to_pres[n]!reject(FATAL); 
       goto endIDLE 
   :: flow_to_ses[n]?connect,0 -> 
         ses_to_fsrv[n]!close; 
         ses_to_pres[n]!reject(NON_FATAL); 
       goto endIDLE 
   :: flow_to_ses[n]?accept,0 -> 
        skip 
    :: timeout -> 
         ses_to_fsrv[n]!close; 
         ses_to_pres[n]!reject(FATAL); 
       goto endIDLE  
fi; 
                       /* 4. Transmit the data, upto eof*/ 
do 
  :: fsrv_to_ses[n]?data -> 
            ses_to_flow[n]!data,0 
  :: fsrv_to_ses[n]?eof -> 
            ses_to_flow[n]!eof,0; 
            status = COMPLETE; 
            break 
  :: pres_to_ses[n]?abort ->          /* local user aborted  */
               ses_to_fsrv[n]!close;
               ses_to_flow[n]!close,0;
               status = FATAL;
               break
od; 
                 /* 5. Close the connexion */ 
do 
   :: pres_to_ses[n]?abort            /* ignore */ 
   :: flow_to_ses[n]?close,0 -> 
              if 
                 :: (status == COMPLETE) ->  
                          ses_to_pres[n]!accept,0       
                 :: (status != COMPLETE) -> 
                         ses_to_pres[n]!reject(status) 
             fi; 
           break 
 :: timeout -> 
       ses_to_pres[n]!reject(FATAL); 
       break 
 od; 
 goto endIDLE 
 
} 
 
/* 
 * File Server Validation Model 
 */ 
 
proctype fserver (bit n) 
{ 
 end: 
    do 
        :: ses_to_fsrv[n]?create ->     /* incoming */ 
             if 
                :: fsrv_to_ses[n]!reject  
               :: fsrv_to_ses[n]!accept -> 
            do 
                 :: ses_to_fsrv[n]?data 
                 :: ses_to_fsrv[n]?eof -> break 
                 :: ses_to_fsrv[n]?close -> break 
            od 
      fi    
     :: ses_to_fsrv[n]?open ->     /* outgoing */ 
             if 
               :: fsrv_to_ses[n]!reject  
               :: fsrv_to_ses[n]!accept -> 
            do 
                 :: fsrv_to_ses[n]!data 
                 :: fsrv_to_ses[n]!eof -> break 
                 :: ses_to_fsrv[n]?close -> break 
            od 
      fi 
 od 
} 
 
/* 
 * Flow Control Laer Validation Model 
 */ 
 
#define true    1 
#define false   0 
 
#define M       4   /* range sequence numbers */ 
#define W        2  /* window size : M/2   */ 
 
proctype fc(bit n) 
{ 
     bool busy[M];        /* outstanding messages     */            
     byte q;                   /* seq# oldest unacked msg */  
     byte m;                   /* seq# last msg received  */ 
     byte s;                   /* seq# next msg to send   */ 
     byte window;              /* nr of outstanding msgs  */ 
     byte type;                /* msg type                */ 
     bit received[M];    /* receiver housekeeping */ 
     bit x;                     /* scratch variable */ 
     byte p;                 /* seq# of last msg acked */ 
    byte I_buf[M], O_buf[M];   /* message buffers */ 
 
 /* sender part */ 
 end: 
      do 
          :: atomic { 
                (window < W && len (ses_to_flow [n]) > 0 
                        && len (flow_to_dll[n]) < QSZ ) -> 
                           ses_to_flow[n]?type,x; 
                          window = window +1; 
                          busy[s]= true; 
                         O_buf[s] = type; 
                         flow_to_dll[n]!type, s; 
                         if 
                            :: (type != sync) -> 
                                     s = (s+1) %M 
                            :: (type == sync) -> 
                                     window = 0; 
                                     s = M; 
                                    do 
                                       :: (s > 0) -> 
                                             s= s - 1; 
                                             busy[s] = false 
                                       :: (s == 0) -> break 
                                    od 
                         fi 
                     } 
       :: atomic { 
                       (window > 0 && busy[q] == false) -> 
                           window = window -1; 
                          q = (q+1) %M 
             } 
#if  DUPS 
       :: atomic { 
             (len(flow_to_dll[n]) < QSZ 
                && window >0 && busy[q] == true) -> 
                  flow_to_dll[n]! O_buf[q], q 
        } 
#endif 
       :: atomic { 
             (timeout && len(flow_to_dll[n]) < QSZ 
                && window >0 && busy[q] == true) -> 
                  flow_to_dll[n]! O_buf[q], q 
        } 
/* receiver part */ 
#if  LOSS 
       :: dll_to_flow[n]?type,m   /* lose any message */ 
#endif 
       :: dll_to_flow[n]?type,m -> 
              if 
                 :: atomic{ 
                        (type == ack) -> 
                           busy[m] = false 
                } 
                :: atomic{ 
                        (type == sync) -> 
                           m = 0;
                           do
                             :: (m < M) ->
                                  received[m] = 0;
                                  m = m + 1
			     :: (m == M) ->
                                  break
                           od  
                }; 
                  flow_to_dll[n]!sync_ack,0
	   :: (type == sync_ack) ->
                  flow_to_ses[n]!sync_ack,0
	   :: (type != ack && type != sync && type != sync_ack) ->
                  if
                    :: atomic {
                       (received[m] == true) ->
                            x = ((0 < p-m  && p-m<= W)
				 || (0 < p-m-M && p-m-M <=W))};
                       if 
                         :: (x) -> flow_to_dll[n]!ack,m
			 :: (!x) /* else skip */   
                       fi
		   :: atomic {
                         (received[m] == false) ->
                              I_buf[m] = type;
                              received[m] = true;
                              received[(m-W+M)%M] = false
				}
                 fi
           fi

     :: (received[p] == true && len(flow_to_ses[n])<QSZ
                             && len(flow_to_dll[n])<QSZ ) ->
                  flow_to_ses[n]!I_buf[p],0;
                  flow_to_dll[n]!ack,p;
                  p = (p+1) % M
     od
 }

/*
 * Datalink Layer Validation Model
 */

proctype data_link ()
{
byte type, seq;

end:
        do
	  :: flow_to_dll[0]?type,seq ->
                 if
                   :: dll_to_flow[1]!type,seq
		   :: skip /* lose message */
                 fi
          :: flow_to_dll[1]?type,seq ->
                 if
                   :: dll_to_flow[0]!type,seq
		   :: skip /* lose message */
                 fi
         od
}

/* 
 * Main Program 
 */ 
 
/*init 
  { 
    atomic { 
      run userprc(0); run userprc(1); 
      run present(0); run present(1); 
      run session(0); run session(1); 
      run fserver(0); run fserver(1); 
      run fc(0);      run fc(1); 
      run data_link() 
     } 
  } 
 */

init 
  { 
    atomic { 
      run userprc(0); 
      run present(0); 
      run session(0); 
      run fserver(0); 
      run fc(0);      
      run data_link();
      run fc(1); 
      run fserver(1); 
      run session(1); 
      run present(1); 
      run userprc(1); 
    } 
  }