aboutsummaryrefslogtreecommitdiffstats
path: root/lib/src/protocol/tcp.h
blob: 68f4bf8f94ec718dee19588650370aa8205d9f12 (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
/*
 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef HICN_PROTOCOL_TCP_H
#define HICN_PROTOCOL_TCP_H

#include "../base.h"
#include "../common.h"
#include "../name.h"

/*
 * NOTE: bitfields are problematic for portability reasons. There are provided
 * here for reference and documentation purposes, we might just provide a macro
 * to disable and use it instead of __BYTE_ORDER__.
 */
typedef struct __attribute__ ((packed))
{
  u16 sport;
  u16 dport;
  union
  {
    u32 seq;
    hicn_name_suffix_t name_suffix;
  };
  union
  {
    u32 seq_ack;
    struct
    {
      hicn_pathlabel_t pathlabel;
      u8 pad[3];
    };
  };

  union
  {
    struct
    {
      u8 data_offset_and_reserved;
      u8 flags;
    };
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
    struct
    {
      u16 reserved:4;
      u16 doff:4;
      u16 fin:1;
      u16 syn:1;
      u16 rst:1;
      u16 psh:1;
      u16 ack:1;
      u16 urg:1;
      u16 ece:1;
      u16 cwr:1;
    };
    struct
    {				/* __ denotes unchanged bitfields */
      u16 timescale:4;
      u16 __doff:4;
      u16 __fin:1;
      u16 __syn:1;
      u16 __rst:1;
      u16 sig:1;
      u16 __ack:1;
      u16 man:1;
      u16 id:1;
      u16 __cwr:1;
    };
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
    struct
    {
      u16 doff:4;
      u16 reserved:4;
      u16 cwr:1;
      u16 ece:1;
      u16 urg:1;
      u16 ack:1;
      u16 psh:1;
      u16 rst:1;
      u16 syn:1;
      u16 fin:1;
    };
    struct
    {
      u16 __doff:4;
      u16 timescale:4;
      u16 __cwr:1;
      u16 id:1 u16 man:1;
      u16 __ack:1;
      u16 sig:1;
      u16 __rst:1;
      u16 __syn:1;
      u16 __fin:1;
    };
#endif
  };
  union
  {
    u16 window;
    u16 ldr;
  };
  u16 csum;
  union
  {
    u16 urg_ptr;
    u16 lifetime;
  };
} _tcp_header_t;

#define TCP_HDRLEN sizeof(_tcp_header_t)

#ifndef HICN_VPP_PLUGIN

/* TCP flags bit 0 first. */
#define foreach_tcp_flag                                \
          _ (FIN) /**< No more data from sender. */             \
      _ (SYN) /**< Synchronize sequence numbers. */         \
      _ (RST) /**< Reset the connection. */                 \
      _ (PSH) /**< Push function. */                        \
      _ (ACK) /**< Ack field significant. */                \
      _ (URG) /**< Urgent pointer field significant. */     \
      _ (ECE) /**< ECN-echo. Receiver got CE packet */      \
      _ (CWR) /**< Sender reduced congestion window */

enum
{
#define _(f) TCP_FLAG_BIT_##f,
  foreach_tcp_flag
#undef _
    TCP_N_FLAG_BITS,
};

enum
{
#define _(f) TCP_FLAG_##f = 1 << TCP_FLAG_BIT_##f,
  foreach_tcp_flag
#undef _
};

#endif /* HICN_VPP_PLUGIN */

// get_data_name_suffix
// name->ip4.suffix = h->v4.tcp.seq;


#endif /* HICN_PROTOCOL_TCP_H */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */