aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet/message/msg_dht_p2p.go
blob: 9d1d8156e5581e1894971bb055837f9485e827f1 (plain) (blame)
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
// This file is part of gnunet-go, a GNUnet-implementation in Golang.
// Copyright (C) 2019-2022 Bernd Fix  >Y<
//
// gnunet-go is free software: you can redistribute it and/or modify it
// under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License,
// or (at your option) any later version.
//
// gnunet-go is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
//
// SPDX-License-Identifier: AGPL3.0-or-later

package message

import (
	"bytes"
	"crypto/sha512"
	"encoding/binary"
	"errors"
	"fmt"
	"gnunet/crypto"
	"gnunet/enums"
	"gnunet/service/dht/blocks"
	"gnunet/service/dht/path"
	"gnunet/util"
	"strings"
	"time"

	"github.com/bfix/gospel/crypto/ed25519"
	"github.com/bfix/gospel/logger"
)

//======================================================================
// DHT-P2P is a next-generation implementation of the R5N DHT.
//======================================================================

//----------------------------------------------------------------------
// DHT-P2P-GET messages are used to request information from other
// peers in the DHT.
//----------------------------------------------------------------------

// DHTP2PGetMsg wire layout
type DHTP2PGetMsg struct {
	MsgHeader
	BType      enums.BlockType    `order:"big"`   // content type of the payload
	Flags      uint16             `order:"big"`   // processing flags
	HopCount   uint16             `order:"big"`   // number of hops so far
	ReplLevel  uint16             `order:"big"`   // Replication level
	RfSize     uint16             `order:"big"`   // size of result filter
	PeerFilter *blocks.PeerFilter ``              // peer filter to prevent loops
	Query      *crypto.HashCode   ``              // query hash
	ResFilter  []byte             `size:"RfSize"` // result filter
	XQuery     []byte             `size:"*"`      // extended query
}

// NewDHTP2PGetMsg creates an empty DHT-P2P-Get message
func NewDHTP2PGetMsg() *DHTP2PGetMsg {
	return &DHTP2PGetMsg{
		MsgHeader:  MsgHeader{208, enums.MSG_DHT_P2P_GET},
		BType:      enums.BLOCK_TYPE_ANY,    // no block type defined
		Flags:      0,                       // no flags defined
		HopCount:   0,                       // no hops
		ReplLevel:  0,                       // no replication level defined
		RfSize:     0,                       // no result filter
		PeerFilter: blocks.NewPeerFilter(),  // allocate bloom filter
		Query:      crypto.NewHashCode(nil), // empty Query hash
		ResFilter:  nil,                     // empty result filter
		XQuery:     nil,                     // empty XQuery
	}
}

// String returns a human-readable representation of the message.
func (m *DHTP2PGetMsg) String() string {
	return fmt.Sprintf("DHTP2PGetMsg{btype=%s,hops=%d,flags=%s}",
		m.BType, m.HopCount, DHTFlags(m.Flags))
}

// Update message (forwarding)
func (m *DHTP2PGetMsg) Update(pf *blocks.PeerFilter, rf blocks.ResultFilter, hop uint16) *DHTP2PGetMsg {
	buf := rf.Bytes()
	ns := uint16(len(buf))
	return &DHTP2PGetMsg{
		MsgHeader:  MsgHeader{m.MsgSize - m.RfSize + ns, enums.MSG_DHT_P2P_GET},
		BType:      m.BType,
		Flags:      m.Flags,
		HopCount:   hop,
		ReplLevel:  m.ReplLevel,
		RfSize:     ns,
		PeerFilter: pf.Clone(),
		Query:      m.Query,
		ResFilter:  buf,
		XQuery:     util.Clone(m.XQuery),
	}
}

//----------------------------------------------------------------------
// DHT-P2P-PUT messages are used by other peers in the DHT to
// request block storage.
//----------------------------------------------------------------------

// DHTP2PPutMsg wire layout
type DHTP2PPutMsg struct {
	MsgHeader
	BType       enums.BlockType     `order:"big"`    // block type
	Flags       uint16              `order:"big"`    // processing flags
	HopCount    uint16              `order:"big"`    // message hops
	ReplLvl     uint16              `order:"big"`    // replication level
	PathL       uint16              `order:"big"`    // path length
	Expire      util.AbsoluteTime   ``               // expiration date
	PeerFilter  *blocks.PeerFilter  ``               // peer bloomfilter
	Key         *crypto.HashCode    ``               // query key to block
	TruncOrigin *util.PeerID        `opt:"(IsUsed)"` // truncated origin (if TRUNCATED flag set)
	PutPath     []*path.Entry       `size:"PathL"`   // PUT path
	LastSig     *util.PeerSignature `opt:"(IsUsed)"` // signature of last hop (if RECORD_ROUTE flag is set)
	Block       []byte              `size:"*"`       // block data
}

// NewDHTP2PPutMsg creates an empty new DHTP2PPutMsg
func NewDHTP2PPutMsg() *DHTP2PPutMsg {
	return &DHTP2PPutMsg{
		MsgHeader:   MsgHeader{218, enums.MSG_DHT_P2P_PUT},
		BType:       enums.BLOCK_TYPE_ANY,     // block type
		Flags:       0,                        // processing flags
		HopCount:    0,                        // message hops
		ReplLvl:     0,                        // replication level
		PathL:       0,                        // no PUT path
		Expire:      util.AbsoluteTimeNever(), // expiration date
		PeerFilter:  blocks.NewPeerFilter(),   // peer bloom filter
		Key:         crypto.NewHashCode(nil),  // query key
		TruncOrigin: nil,                      // no truncated path
		PutPath:     make([]*path.Entry, 0),   // empty PUT path
		LastSig:     nil,                      // no signature from last hop
		Block:       nil,                      // no block data
	}
}

// IsUsed returns true if an optional field is used
func (m *DHTP2PPutMsg) IsUsed(field string) bool {
	switch field {
	case "Origin":
		return m.Flags&enums.DHT_RO_TRUNCATED != 0
	case "LastSig":
		return m.Flags&enums.DHT_RO_RECORD_ROUTE != 0
	}
	return false
}

//----------------------------------------------------------------------

// Update message (forwarding)
func (m *DHTP2PPutMsg) Update(p *path.Path, pf *blocks.PeerFilter, hop uint16) *DHTP2PPutMsg {
	msg := NewDHTP2PPutMsg()
	msg.Flags = m.Flags
	msg.HopCount = hop
	msg.PathL = p.NumList
	msg.Expire = m.Expire
	msg.PeerFilter = pf
	msg.Key = m.Key.Clone()
	msg.TruncOrigin = p.TruncOrigin
	msg.PutPath = util.Clone(p.List)
	msg.LastSig = p.LastSig
	msg.Block = util.Clone(m.Block)
	msg.SetPath(p)
	return msg
}

//----------------------------------------------------------------------
// Path handling (get/set path in message)
//----------------------------------------------------------------------

// Path returns the current path from message
func (m *DHTP2PPutMsg) Path(sender *util.PeerID) *path.Path {
	// create a "real" path list from message data
	pth := path.NewPath(crypto.Hash(m.Block), m.Expire)
	pth.Flags = m.Flags

	// return empty path if recording is switched off
	if pth.Flags&enums.DHT_RO_RECORD_ROUTE == 0 {
		return pth
	}

	// handle truncate origin
	if pth.Flags&enums.DHT_RO_TRUNCATED == 1 {
		if m.TruncOrigin == nil {
			logger.Printf(logger.WARN, "[path] truncated but no origin - flag reset")
			pth.Flags &^= enums.DHT_RO_TRUNCATED
		} else {
			pth.TruncOrigin = m.TruncOrigin
		}
	}

	// copy path elements
	pth.List = util.Clone(m.PutPath)
	pth.NumList = uint16(len(pth.List))

	// handle last hop signature
	if m.LastSig == nil {
		logger.Printf(logger.WARN, "[path]  - last hop signature missing - path reset")
		return path.NewPath(crypto.Hash(m.Block), m.Expire)
	}
	pth.LastSig = m.LastSig
	pth.LastHop = sender
	return pth
}

// Set path in message; corrects the message size accordingly
func (m *DHTP2PPutMsg) SetPath(p *path.Path) {

	// return if recording is switched off (don't touch path)
	if m.Flags&enums.DHT_RO_RECORD_ROUTE == 0 {
		return
	}
	// compute old path size
	var pes uint
	if len(m.PutPath) > 0 {
		pes = m.PutPath[0].Size()
	}
	oldSize := uint(len(m.PutPath)) * pes
	if m.TruncOrigin != nil {
		oldSize += m.TruncOrigin.Size()
	}
	if m.LastSig != nil {
		oldSize += m.LastSig.Size()
	}
	// if no new path is defined,...
	if p == nil {
		// ... remove existing path
		m.TruncOrigin = nil
		m.PutPath = nil
		m.LastSig = nil
		m.PathL = 0
		m.Flags &^= enums.DHT_RO_TRUNCATED
		m.MsgSize -= uint16(oldSize)
		return
	}
	// adjust message size
	m.MsgSize += uint16(p.Size() - oldSize)

	// transfer path data
	if p.TruncOrigin != nil {
		// truncated path
		m.Flags |= enums.DHT_RO_TRUNCATED
		m.TruncOrigin = p.TruncOrigin
	}
	m.PutPath = util.Clone(p.List)
	m.PathL = uint16(len(m.PutPath))
	if p.LastSig != nil {
		m.LastSig = p.LastSig
	}
}

//----------------------------------------------------------------------

// String returns a human-readable representation of the message.
func (m *DHTP2PPutMsg) String() string {
	return fmt.Sprintf("DHTP2PPutMsg{btype=%s,hops=%d,flags=%s}",
		m.BType, m.HopCount, DHTFlags(m.Flags))
}

//----------------------------------------------------------------------
// DHT-P2P-RESULT messages are used to answer peer requests for
// bock retrieval.
//----------------------------------------------------------------------

// DHTP2PResultMsg wire layout
type DHTP2PResultMsg struct {
	MsgHeader
	BType       enums.BlockType     `order:"big"`      // Block type of result
	Reserved    uint16              `order:"big"`      // Reserved
	Flags       uint16              `order:"big"`      // Message flags
	PutPathL    uint16              `order:"big"`      // size of PUTPATH field
	GetPathL    uint16              `order:"big"`      // size of GETPATH field
	Expire      util.AbsoluteTime   ``                 // expiration date
	Query       *crypto.HashCode    ``                 // Query key for block
	TruncOrigin *util.PeerID        `opt:"(IsUsed)"`   // truncated origin (if TRUNCATED flag set)
	PathList    []*path.Entry       `size:"(NumPath)"` // PATH
	LastSig     *util.PeerSignature `opt:"(IsUsed)"`   // signature of last hop (if RECORD_ROUTE flag is set)
	Block       []byte              `size:"*"`         // block data
}

// NewDHTP2PResultMsg creates a new empty DHTP2PResultMsg
func NewDHTP2PResultMsg() *DHTP2PResultMsg {
	return &DHTP2PResultMsg{
		MsgHeader:   MsgHeader{88, enums.MSG_DHT_P2P_RESULT},
		BType:       enums.BLOCK_TYPE_ANY, // type of returned block
		TruncOrigin: nil,                  // no truncated origin
		PutPathL:    0,                    // empty putpath
		GetPathL:    0,                    // empty getpath
		PathList:    nil,                  // empty path list (put+get)
		LastSig:     nil,                  // no recorded route
		Block:       nil,                  // empty block
	}
}

// IsUsed returns if an optional field is present
func (m *DHTP2PResultMsg) IsUsed(field string) bool {
	switch field {
	case "Origin":
		return m.Flags&enums.DHT_RO_TRUNCATED != 0
	case "LastSig":
		return m.Flags&enums.DHT_RO_RECORD_ROUTE != 0
	}
	return false
}

// NumPath returns the total number of entries in path
func (m *DHTP2PResultMsg) NumPath(field string) uint {
	return uint(m.GetPathL + m.PutPathL)
}

//----------------------------------------------------------------------
// Path handling (get/set path in message)
//----------------------------------------------------------------------

// Path returns the current path from message
func (m *DHTP2PResultMsg) Path(sender *util.PeerID) *path.Path {
	// create a "real" path list from message data
	pth := path.NewPath(crypto.Hash(m.Block), m.Expire)
	pth.Flags = m.Flags

	// return empty path if recording is switched off
	if pth.Flags&enums.DHT_RO_RECORD_ROUTE == 0 {
		return pth
	}
	// handle truncate origin
	if pth.Flags&enums.DHT_RO_TRUNCATED == 1 {
		if pth.TruncOrigin == nil {
			logger.Printf(logger.WARN, "[path] truncated but no origin - flag reset")
			pth.Flags &^= enums.DHT_RO_TRUNCATED
		} else {
			pth.TruncOrigin = m.TruncOrigin
		}
	}

	// copy path elements
	pth.List = util.Clone(m.PathList)
	pth.NumList = uint16(len(pth.List))

	// check consistent length values; adjust if mismatched
	if m.GetPathL+m.PutPathL != pth.NumList {
		logger.Printf(logger.WARN, "[path] Inconsistent PATH length -- adjusting...")
		if sp := pth.NumList - m.PutPathL; sp > 0 {
			pth.SplitPos = sp
		} else {
			pth.SplitPos = 0
		}
	} else {
		pth.SplitPos = pth.NumList - m.PutPathL
	}
	// handle last hop signature
	if m.LastSig == nil {
		logger.Printf(logger.WARN, "[path]  - last hop signature missing - path reset")
		return path.NewPath(crypto.Hash(m.Block), m.Expire)
	}
	pth.LastSig = m.LastSig
	pth.LastHop = sender
	return pth
}

// Set path in message; corrects the message size accordingly
func (m *DHTP2PResultMsg) SetPath(p *path.Path) {

	// return if recording is switched off (don't touch path)
	if m.Flags&enums.DHT_RO_RECORD_ROUTE == 0 {
		return
	}
	// compute old path size
	var pes uint
	if len(m.PathList) > 0 {
		pes = m.PathList[0].Size()
	}
	oldSize := uint(len(m.PathList)) * pes
	if m.TruncOrigin != nil {
		oldSize += m.TruncOrigin.Size()
	}
	if m.LastSig != nil {
		oldSize += m.LastSig.Size()
	}
	// if no new path is defined,...
	if p == nil {
		// ... remove existing path
		m.TruncOrigin = nil
		m.PathList = make([]*path.Entry, 0)
		m.LastSig = nil
		m.GetPathL = 0
		m.PutPathL = 0
		m.Flags &^= enums.DHT_RO_TRUNCATED
		m.MsgSize -= uint16(oldSize)
		return
	}
	// adjust message size
	m.MsgSize += uint16(p.Size() - oldSize)

	// transfer path data
	if p.TruncOrigin != nil {
		// truncated path
		m.Flags |= enums.DHT_RO_TRUNCATED
		m.TruncOrigin = p.TruncOrigin
	}
	m.PathList = util.Clone(p.List)
	m.PutPathL = p.SplitPos
	m.GetPathL = p.NumList - p.SplitPos
	if p.LastSig != nil {
		m.LastSig = p.LastSig
	}
}

//----------------------------------------------------------------------

// Update message (forwarding)
func (m *DHTP2PResultMsg) Update(pth *path.Path) *DHTP2PResultMsg {
	// clone old message
	msg := &DHTP2PResultMsg{
		MsgHeader:   MsgHeader{m.MsgSize, m.MsgType},
		BType:       m.BType,
		Flags:       m.Flags,
		PutPathL:    m.PutPathL,
		GetPathL:    m.GetPathL,
		Expire:      m.Expire,
		Query:       m.Query.Clone(),
		TruncOrigin: m.TruncOrigin,
		PathList:    util.Clone(m.PathList),
		LastSig:     m.LastSig,
		Block:       util.Clone(m.Block),
	}
	// set new path
	msg.SetPath(pth)
	return msg
}

//----------------------------------------------------------------------

// String returns a human-readable representation of the message.
func (m *DHTP2PResultMsg) String() string {
	return fmt.Sprintf("DHTP2PResultMsg{btype=%s,putl=%d,getl=%d,flags=%s}",
		m.BType, m.PutPathL, m.GetPathL, DHTFlags(m.Flags))
}

//----------------------------------------------------------------------
// DHT-P2P-HELLO
//
// A DHT-P2P-HELLO message is used to exchange information about transports
// with other DHT nodes. This struct is always followed by the actual
// network addresses of type "HelloAddress"
//----------------------------------------------------------------------

// DHTP2PHelloMsg is a message send by peers to announce their presence
type DHTP2PHelloMsg struct {
	MsgHeader
	Reserved  uint16              `order:"big"` // Reserved for further use
	NumAddr   uint16              `order:"big"` // Number of addresses in list
	Signature *util.PeerSignature ``            // Signature
	Expire    util.AbsoluteTime   ``            // expiration time
	AddrList  []byte              `size:"*"`    // List of end-point addresses (HelloAddress)
}

// NewHelloMsgDHT creates an empty DHT_P2P_HELLO message.
func NewDHTP2PHelloMsg() *DHTP2PHelloMsg {
	// return empty HelloMessage with set expire date
	t := util.NewAbsoluteTime(time.Now().Add(HelloAddressExpiration))
	exp := util.NewAbsoluteTimeEpoch(t.Epoch())

	return &DHTP2PHelloMsg{
		MsgHeader: MsgHeader{80, enums.MSG_DHT_P2P_HELLO},
		Reserved:  0,                          // not used here
		NumAddr:   0,                          // start with empty address list
		Signature: util.NewPeerSignature(nil), // signature
		Expire:    exp,                        // default expiration
		AddrList:  make([]byte, 0),            // list of addresses
	}
}

// Addresses returns the list of HelloAddress
func (m *DHTP2PHelloMsg) Addresses() (list []*util.Address, err error) {
	var addr *util.Address
	var as string
	num, pos := 0, 0
	for {
		// parse address string from stream
		if as, pos = util.ReadCString(m.AddrList, pos); pos == -1 {
			break
		}
		if addr, err = util.ParseAddress(as); err != nil {
			return
		}
		addr.Expire = m.Expire
		list = append(list, addr)
		num++
	}
	// check numbers
	if num != int(m.NumAddr) {
		logger.Printf(logger.WARN, "[DHTP2PHelloMsg] Number of addresses does not match (got %d, expected %d)", num, m.NumAddr)
	}
	return
}

// SetAddresses adds addresses to the HELLO message.
func (m *DHTP2PHelloMsg) SetAddresses(list []*util.Address) {
	// write addresses as blob and track earliest expiration
	t := util.NewAbsoluteTime(time.Now().Add(HelloAddressExpiration))
	exp := util.NewAbsoluteTimeEpoch(t.Epoch())
	wrt := new(bytes.Buffer)
	for _, addr := range list {
		// check if address expires before current expire
		if exp.Compare(addr.Expire) > 0 {
			exp = addr.Expire
		}
		n, _ := wrt.Write([]byte(addr.URI()))
		wrt.WriteByte(0)
		m.MsgSize += uint16(n + 1)
	}
	m.AddrList = wrt.Bytes()
	m.Expire = exp
	m.NumAddr = uint16(len(list))
}

// String returns a human-readable representation of the message.
func (m *DHTP2PHelloMsg) String() string {
	return fmt.Sprintf("DHTP2PHelloMsg{expire:%s,addrs=[%d]}", m.Expire, m.NumAddr)
}

// Verify the message signature
func (m *DHTP2PHelloMsg) Verify(peer *util.PeerID) (bool, error) {
	// assemble signed data and public key
	sd := m.SignedData()
	pub := ed25519.NewPublicKeyFromBytes(peer.Data)
	sig, err := ed25519.NewEdSignatureFromBytes(m.Signature.Data)
	if err != nil {
		return false, err
	}
	return pub.EdVerify(sd, sig)
}

// SetSignature stores a signature in the the HELLO block
func (m *DHTP2PHelloMsg) SetSignature(sig *util.PeerSignature) error {
	m.Signature = sig
	return nil
}

// SignedData assembles a data block for sign and verify operations.
func (m *DHTP2PHelloMsg) SignedData() []byte {
	// hash address block
	hAddr := sha512.Sum512(m.AddrList)
	var size uint32 = 80
	purpose := uint32(enums.SIG_HELLO)

	// assemble signed data
	buf := new(bytes.Buffer)
	var n int
	err := binary.Write(buf, binary.BigEndian, size)
	if err == nil {
		if err = binary.Write(buf, binary.BigEndian, purpose); err == nil {
			if err = binary.Write(buf, binary.BigEndian, m.Expire); err == nil {
				if n, err = buf.Write(hAddr[:]); err == nil {
					if n != len(hAddr[:]) {
						err = errors.New("write failed")
					}
				}
			}
		}
	}
	if err != nil {
		logger.Printf(logger.ERROR, "[DHTP2PHelloMsg.SignedData] failed: %s", err.Error())
	}
	return buf.Bytes()
}

//----------------------------------------------------------------------
// Helper functions
//----------------------------------------------------------------------

// get human-readable flags
func DHTFlags(flags uint16) string {
	var list []string
	if flags&enums.DHT_RO_DEMULTIPLEX_EVERYWHERE != 0 {
		list = append(list, "DEMUX")
	}
	if flags&enums.DHT_RO_RECORD_ROUTE != 0 {
		list = append(list, "ROUTE")
	}
	if flags&enums.DHT_RO_FIND_APPROXIMATE != 0 {
		list = append(list, "APPROX")
	}
	if flags&enums.DHT_RO_TRUNCATED != 0 {
		list = append(list, "TRUNC")
	}
	s := strings.Join(list, "|")
	return "<" + s + ">"
}