File: updatethreadsentries.cc

package info (click to toggle)
signalbackup-tools 20250313.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,752 kB
  • sloc: cpp: 47,042; sh: 477; ansic: 399; ruby: 19; makefile: 3
file content (401 lines) | stat: -rw-r--r-- 22,798 bytes parent folder | download
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
/*
  Copyright (C) 2019-2024  Selwin van Dijk

  This file is part of signalbackup-tools.

  signalbackup-tools is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  signalbackup-tools 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 General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with signalbackup-tools.  If not, see <https://www.gnu.org/licenses/>.
*/

#include "signalbackup.ih"
#include "msgrange.h"

void SignalBackup::updateThreadsEntries(long long int thread)
{
  Logger::message(__FUNCTION__);

  SqliteDB::QueryResults results;
  std::string query = "SELECT DISTINCT _id, " + d_thread_recipient_id + " FROM thread"; // gets all threads
  if (thread > -1)
    query += " WHERE _id = " + bepaald::toString(thread);
  d_database.exec(query, &results);
  for (unsigned int i = 0; i < results.rows(); ++i)
  {
    if (results.valueHasType<long long int>(i, "_id"))
    {
      // set message count
      std::string threadid = bepaald::toString(results.getValueAs<long long int>(i, "_id"));

      if (i == 0)
        Logger::message_start("  Dealing with thread id: ", threadid);
      else
        Logger::message_continue(", ", threadid);

      long long int thread_recipient = -1;
      if (results.valueHasType<long long int>(i, d_thread_recipient_id))
        thread_recipient = results.getValueAs<long long int>(i, d_thread_recipient_id);

      //std::cout << "    Updating msgcount" << std::endl;

      /*
ThreadTable::
  private fun isSilentType(type: Long): Boolean {
    return MessageTypes.isProfileChange(type) ||
      MessageTypes.isGroupV1MigrationEvent(type) ||
      MessageTypes.isChangeNumber(type) ||
      MessageTypes.isBoostRequest(type) ||
      MessageTypes.isGroupV2LeaveOnly(type) ||
      MessageTypes.isThreadMergeType(type)
      }
*/
      SqliteDB::QueryResults results2;
      if (d_database.containsTable("sms"))
      {
        d_database.exec("UPDATE thread SET " + d_thread_message_count + " = "
                        "(SELECT (SELECT count(*) FROM sms WHERE thread_id = " + threadid +
                        ") + (SELECT count(*) FROM " + d_mms_table + " WHERE thread_id = " + threadid + ")) WHERE _id = " + threadid);

        d_database.exec("SELECT sms.date_sent AS union_date, sms.type AS union_type, sms.body AS union_body, sms._id AS [sms._id], '' AS [mms._id] FROM 'sms' WHERE sms.thread_id = " +
                        threadid + " UNION SELECT " + d_mms_table + "." + d_mms_date_sent + " AS union_date, " + d_mms_table + "." + d_mms_type + " AS union_type, " +
                        d_mms_table + ".body AS union_body, '' AS [sms._id], " + d_mms_table + "._id AS [mms._id] FROM " + d_mms_table +
                        " WHERE " + d_mms_table + ".thread_id = " + threadid +
                        " AND (union_type & ?) = 0"
                        " AND (union_type & ?) = 0"
                        " AND (union_type & ?) != ?"
                        " AND (union_type & ?) != ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " ORDER BY union_date DESC LIMIT 1",
                        {Types::KEY_EXCHANGE_IDENTITY_DEFAULT_BIT,
                         Types::KEY_EXCHANGE_IDENTITY_VERIFIED_BIT,
                         Types::SPECIAL_TYPES_MASK, Types::SPECIAL_TYPE_REPORTED_SPAM,
                         Types::SPECIAL_TYPES_MASK, Types::SPECIAL_TYPE_MESSAGE_REQUEST_ACCEPTED,
                         Types::BASE_TYPE_MASK, Types::PROFILE_CHANGE_TYPE,
                         Types::BASE_TYPE_MASK, Types::GV1_MIGRATION_TYPE,
                         Types::BASE_TYPE_MASK, Types::CHANGE_NUMBER_TYPE,
                         Types::BASE_TYPE_MASK, Types::BOOST_REQUEST_TYPE,
                         Types::GROUP_V2_LEAVE_BITS, Types::GROUP_V2_LEAVE_BITS,
                         Types::BASE_TYPE_MASK, Types::THREAD_MERGE_TYPE}, &results2);
      }
      else // dbv >= 168
      {
        d_database.exec("UPDATE thread SET " + d_thread_message_count + " = "
                        "(SELECT count(*) FROM " + d_mms_table + " WHERE thread_id = " + threadid + ") WHERE _id = " + threadid);

        // at dbv199, an active column was added to thread. When deleted, only a thread contents are actually deleted,
        // but the thread itself is simply marked inactive (preventing it from showing up in the thread list).
        // Since this only happens to deleted threads, inactive implies 0 messages (meaningful or otherwise) in the thread,
        // we set to active if _anything_ is there
        if (d_database.tableContainsColumn("thread", "active"))
          d_database.exec("UPDATE thread SET active = "
                          "((SELECT count(*) FROM " + d_mms_table + " WHERE thread_id = " + threadid + ") > 0) WHERE _id = " + threadid + " AND active = 0");

        d_database.exec("SELECT " + d_mms_table + "." + d_mms_date_sent + " AS union_date, " + d_mms_table + "." + d_mms_type + " AS union_type, " +
                        d_mms_table + ".body AS union_body, '' AS [sms._id], " + d_mms_table + "._id AS [mms._id] FROM " + d_mms_table +
                        " WHERE " + d_mms_table + ".thread_id = " + threadid +
                        " AND (union_type & ?) = 0"
                        " AND (union_type & ?) = 0"
                        " AND (union_type & ?) != ?"
                        " AND (union_type & ?) != ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " AND (union_type & ?) IS NOT ?"
                        " ORDER BY union_date DESC LIMIT 1",
                        {Types::KEY_EXCHANGE_IDENTITY_DEFAULT_BIT,
                         Types::KEY_EXCHANGE_IDENTITY_VERIFIED_BIT,
                         Types::SPECIAL_TYPES_MASK, Types::SPECIAL_TYPE_REPORTED_SPAM,
                         Types::SPECIAL_TYPES_MASK, Types::SPECIAL_TYPE_MESSAGE_REQUEST_ACCEPTED,
                         Types::BASE_TYPE_MASK, Types::PROFILE_CHANGE_TYPE,
                         Types::BASE_TYPE_MASK, Types::GV1_MIGRATION_TYPE,
                         Types::BASE_TYPE_MASK, Types::CHANGE_NUMBER_TYPE,
                         Types::BASE_TYPE_MASK, Types::BOOST_REQUEST_TYPE,
                         Types::GROUP_V2_LEAVE_BITS, Types::GROUP_V2_LEAVE_BITS,
                         Types::BASE_TYPE_MASK, Types::THREAD_MERGE_TYPE},
                        &results2);
      }

      if (results2.rows() == 0)
        continue;

      std::any mid = results2.value(0, "mms._id"); // not d_mms_table, we used an alias in query

      std::any date = results2.value(0, "union_date");
      if (date.type() == typeid(long long int))
      {
        long long int roundeddate = std::any_cast<long long int>(date) - (std::any_cast<long long int>(date) % 1000);
        //std::cout << "    Setting last msg date (" << roundeddate << ")" << std::endl;
        d_database.exec("UPDATE thread SET date = ? WHERE _id = ?", {roundeddate, threadid});
      }

      std::any body = results2.value(0, "union_body");
      std::string newsnippet;
      if (body.type() == typeid(std::string))
      {
        newsnippet = std::any_cast<std::string>(body);
        if (d_database.containsTable("mention"))
        {
          SqliteDB::QueryResults snippet_mentions;
          if (mid.type() == typeid(long long int))
          {
            if (d_database.exec("SELECT * FROM mention WHERE message_id = ?", mid, &snippet_mentions))
            {
              std::vector<Range> ranges;
              for (unsigned int m = 0; m < snippet_mentions.rows(); ++m)
              {
                std::string displayname = getNameFromRecipientId(snippet_mentions.getValueAs<long long int>(m, "recipient_id"));
                if (displayname.empty())
                  continue;
                ranges.emplace_back(Range{snippet_mentions.getValueAs<long long int>(m, "range_start"),
                                          snippet_mentions.getValueAs<long long int>(m, "range_length"),
                                          "",
                                          "@" + displayname,
                                          "",
                                          false});
              }
              applyRanges(&newsnippet, &ranges, nullptr);
            }
          }
        }

        //std::cout << "    Updating snippet (" << newsnippet << ")" << std::endl;
        d_database.exec("UPDATE thread SET snippet = ? WHERE _id = ?", {newsnippet, threadid});
      }
      else
      {
        //std::cout << "    Updating snippet (NULL)" << std::endl;
        d_database.exec("UPDATE thread SET snippet = NULL WHERE _id = ?", threadid);
      }

      std::any type = results2.value(0, "union_type");
      if (type.type() == typeid(long long int))
      {
        //std::cout << "    Updating snippet type (" << std::any_cast<long long int>(type) << ")" << std::endl;
        d_database.exec("UPDATE thread SET snippet_type = ? WHERE _id = ?", {std::any_cast<long long int>(type), threadid});
      }

      if (mid.type() == typeid(long long int))
      {
        //std::cout << "Checking mms" << std::endl;

        SqliteDB::QueryResults results3;
        if (d_database.tableContainsColumn(d_part_table, "sticker_pack_id") &&
            d_database.tableContainsColumn(d_part_table, "sticker_emoji"))
          d_database.exec("SELECT " +
                          (d_database.tableContainsColumn(d_part_table, "unique_id") ? "unique_id"s : "-1 AS unique_id"s) +
                          ", _id, " + d_part_ct + ", sticker_pack_id, IFNULL(sticker_emoji, '') AS sticker_emoji "
                          "FROM " + d_part_table + " WHERE " + d_part_mid + " = ?", {mid}, &results3);
        else
          d_database.exec("SELECT " +
                          (d_database.tableContainsColumn(d_part_table, "unique_id") ? "unique_id"s : "-1 AS unique_id"s) +
                          ", _id, " + d_part_ct + ", NULL AS sticker_pack_id, NULL AS sticker_emoji "
                          "FROM " + d_part_table + " WHERE " + d_part_mid + " = ?", {mid}, &results3);

        if (results3.rows())
        {
          std::any uniqueid = results3.value(0, "unique_id");
          std::any id = results3.value(0, "_id");
          std::any filetype = results3.value(0, d_part_ct);

          // snippet_uri = content://org.thoughtcrime.securesms/part/ + part.unique_id + '/' + part._id
          if (id.type() == typeid(long long int) && uniqueid.type() == typeid(long long int))
          {
            //std::cout << "    Updating snippet_uri" << std::endl;
            d_database.exec("UPDATE thread SET snippet_uri = 'content://org.thoughtcrime.securesms/part/" +
                            bepaald::toString(std::any_cast<long long int>(uniqueid)) + "/" +
                            bepaald::toString(std::any_cast<long long int>(id)) + "' WHERE _id = " + threadid);
          }

          // update body to show photo/movie/file
          if (!results3.isNull(0, "sticker_pack_id") &&
              !results3("sticker_pack_id").empty())
          {
            std::string snippet = results3("sticker_emoji");
            snippet += (snippet.empty() ? "" : " ") + "Sticker"s;
            d_database.exec("UPDATE thread SET snippet = ? WHERE _id = ?", {snippet, threadid});
          }
          else if (filetype.type() == typeid(std::string))
          {
            std::string t = std::any_cast<std::string>(filetype);

            //std::cout << "FILE TYPE: " << t << std::endl;

            std::string snippet;
            if (STRING_STARTS_WITH(t, "image/gif"))
            {
              snippet = "\xF0\x9F\x8E\xA1 "; // ferris wheel emoji for some reason
              snippet += (newsnippet.empty()) ? "GIF" : newsnippet;
            }
            else if (STRING_STARTS_WITH(t, "image"))
            {
              snippet = "\xF0\x9F\x93\xB7 "; // (still) camera emoji
              snippet += (newsnippet.empty()) ? "Photo" : newsnippet;
            }
            else if (STRING_STARTS_WITH(t, "audio"))
            {
              snippet = "\xF0\x9F\x8E\xA4 "; // microphone emoji
              snippet += (newsnippet.empty()) ? "Voice message" : newsnippet;
            }
            else if (STRING_STARTS_WITH(t, "video"))
            {
              snippet = "\xF0\x9F\x8E\xA5 "; //  (movie) camera emoji
              snippet += (newsnippet.empty()) ? "Video" : newsnippet;
            }
            else // if binary file
            {
              snippet = "\xF0\x9F\x93\x8E "; // paperclip
              snippet += (newsnippet.empty()) ? "File" : newsnippet;
            }
            //std::cout << "    Updating snippet (" << snippet << ")" << std::endl;
            d_database.exec("UPDATE thread SET snippet = ? WHERE _id = ?", {snippet, threadid});
          }
        }
        else // was mms, but no part -> maybe contact sharing?
        {    // -> '[{"name":{"displayName":"Basje Timmer",...}}]'
          SqliteDB::QueryResults results4;
          d_database.exec("SELECT json_extract(" + d_mms_table + ".shared_contacts, '$[0].name.displayName') AS shared_contact_name from " + d_mms_table + " WHERE _id = ? AND shared_contacts IS NOT NULL", mid, &results4);
          if (results4.rows() != 0 && results4.valueHasType<std::string>(0, "shared_contact_name"))
          {
            std::string snippet = "\xF0\x9F\x91\xA4 " + results4.getValueAs<std::string>(0, "shared_contact_name"); // bust in silouette emoji
            //std::cout << "    Updating snippet (" << snippet << ")" << std::endl;
            d_database.exec("UPDATE thread SET snippet = ? WHERE _id = ?", {snippet, threadid});
          }
        }
      }
      else
      {
        //std::cout << "    Updating snippet (NULL)" << std::endl;
        d_database.exec("UPDATE thread SET snippet_uri = NULL");
      }

      // if isgroup && database has snippet_extras
      // set snippet_extras = {"individualRecipientId":"8"};
      if (!d_database.containsTable("sms") && d_database.tableContainsColumn("thread", "snippet_extras"))
      {
        long long int isgroup = d_database.getSingleResultAs<long long int>("SELECT group_id IS NOT NULL FROM recipient WHERE _id = ?", thread_recipient, 0);
        if  (isgroup)
        {
          long long int sender = -1;
          if (!d_database.tableContainsColumn(d_mms_table, "to_recipient_id")) // old style -> incoming: sender = message.recipient_id
          {                                                                    //              outgoing: sender = self
            SqliteDB::QueryResults snippet_extras;
            if (d_database.exec("SELECT " + d_mms_type + "," + d_mms_recipient_id + " FROM " + d_mms_table +
                                " WHERE " + d_mms_table + ".thread_id = " + threadid +
                                " AND (" + d_mms_type + " & ?) IS NOT ?"
                                " AND (" + d_mms_type + " & ?) IS NOT ?"
                                " AND (" + d_mms_type + " & ?) IS NOT ?"
                                " AND (" + d_mms_type + " & ?) IS NOT ?"
                                " AND (" + d_mms_type + " & ?) IS NOT ?"
                                " AND (" + d_mms_type + " & ?) IS NOT ?"
                                " ORDER BY " + d_mms_date_sent + " DESC LIMIT 1",
                                {Types::BASE_TYPE_MASK, Types::PROFILE_CHANGE_TYPE,
                                 Types::BASE_TYPE_MASK, Types::GV1_MIGRATION_TYPE,
                                 Types::BASE_TYPE_MASK, Types::CHANGE_NUMBER_TYPE,
                                 Types::BASE_TYPE_MASK, Types::BOOST_REQUEST_TYPE,
                                 Types::GROUP_V2_LEAVE_BITS, Types::GROUP_V2_LEAVE_BITS,
                                 Types::BASE_TYPE_MASK, Types::THREAD_MERGE_TYPE}, &snippet_extras) &&
                snippet_extras.rows() == 1 && snippet_extras.valueHasType<long long int>(0, d_mms_type) && snippet_extras.valueHasType<long long int>(0, d_mms_recipient_id))
            {
              long long int mmstype = snippet_extras.getValueAs<long long int>(0, d_mms_type);
              if (Types::isOutgoing(mmstype))
              {
                if (d_selfid == -1)
                  d_selfid = scanSelf();
                sender = d_selfid;
              }
              else
                sender = snippet_extras.getValueAs<long long int>(0, d_mms_recipient_id);
            }
          }
          else // new style
            sender = d_database.getSingleResultAs<long long int>("SELECT " + d_mms_recipient_id + " FROM " + d_mms_table +
                                                                 " WHERE " + d_mms_table + ".thread_id = " + threadid +
                                                                 " AND (" + d_mms_type + " & ?) IS NOT ?"
                                                                 " AND (" + d_mms_type + " & ?) IS NOT ?"
                                                                 " AND (" + d_mms_type + " & ?) IS NOT ?"
                                                                 " AND (" + d_mms_type + " & ?) IS NOT ?"
                                                                 " AND (" + d_mms_type + " & ?) IS NOT ?"
                                                                 " AND (" + d_mms_type + " & ?) IS NOT ?"
                                                                 " ORDER BY " + d_mms_date_sent + " DESC LIMIT 1",
                                                                 {Types::BASE_TYPE_MASK, Types::PROFILE_CHANGE_TYPE,
                                                                  Types::BASE_TYPE_MASK, Types::GV1_MIGRATION_TYPE,
                                                                  Types::BASE_TYPE_MASK, Types::CHANGE_NUMBER_TYPE,
                                                                  Types::BASE_TYPE_MASK, Types::BOOST_REQUEST_TYPE,
                                                                  Types::GROUP_V2_LEAVE_BITS, Types::GROUP_V2_LEAVE_BITS,
                                                                  Types::BASE_TYPE_MASK, Types::THREAD_MERGE_TYPE}, -1);
          if (sender > -1) // got sender, set snippet_extras
          {
            d_database.exec("UPDATE thread SET snippet_extras = json_object('individualRecipientId', '" + bepaald::toString(sender) + "') WHERE _id = ?", threadid);
            //d_database.prettyPrint("SELECT snippet_extras FROM thread WHERE _id = ?", threadid);
          }
          else
          {
            // could not set 'individualRecipientId' for some reason, should probably clear it (the currently present id might not exist)?
            Logger::message_end();
            Logger::warning("Not updating thread[", threadid, "].snippet_extras: failed to get sender (", sender, ")");
            Logger::warning_indent("Query: ",
                                   "SELECT " + d_mms_recipient_id + " FROM " + d_mms_table +
                                   " WHERE " + d_mms_table + ".thread_id = " + threadid +
                                   " AND (" + d_mms_type + " & ", Types::BASE_TYPE_MASK, ") IS NOT ", Types::PROFILE_CHANGE_TYPE,
                                   " AND (" + d_mms_type + " & ", Types::BASE_TYPE_MASK, ") IS NOT ", Types::GV1_MIGRATION_TYPE,
                                   " AND (" + d_mms_type + " & ", Types::BASE_TYPE_MASK, ") IS NOT ", Types::CHANGE_NUMBER_TYPE,
                                   " AND (" + d_mms_type + " & ", Types::BASE_TYPE_MASK, ") IS NOT ", Types::BOOST_REQUEST_TYPE,
                                   " AND (" + d_mms_type + " & ", Types::GROUP_V2_LEAVE_BITS, ") IS NOT ", Types::GROUP_V2_LEAVE_BITS,
                                   " AND (" + d_mms_type + " & ", Types::BASE_TYPE_MASK, ") IS NOT ", Types::THREAD_MERGE_TYPE,
                                   " ORDER BY " + d_mms_date_sent + " DESC LIMIT 1");
            d_database.prettyPrint(d_truncate,
                                   "SELECT " + d_mms_recipient_id + " FROM " + d_mms_table +
                                   " WHERE " + d_mms_table + ".thread_id = " + threadid +
                                   " AND (" + d_mms_type + " & ?) IS NOT ?"
                                   " AND (" + d_mms_type + " & ?) IS NOT ?"
                                   " AND (" + d_mms_type + " & ?) IS NOT ?"
                                   " AND (" + d_mms_type + " & ?) IS NOT ?"
                                   " AND (" + d_mms_type + " & ?) IS NOT ?"
                                   " AND (" + d_mms_type + " & ?) IS NOT ?"
                                   " ORDER BY " + d_mms_date_sent + " DESC LIMIT 1",
                                   {Types::BASE_TYPE_MASK, Types::PROFILE_CHANGE_TYPE,
                                    Types::BASE_TYPE_MASK, Types::GV1_MIGRATION_TYPE,
                                    Types::BASE_TYPE_MASK, Types::CHANGE_NUMBER_TYPE,
                                    Types::BASE_TYPE_MASK, Types::BOOST_REQUEST_TYPE,
                                    Types::GROUP_V2_LEAVE_BITS, Types::GROUP_V2_LEAVE_BITS,
                                    Types::BASE_TYPE_MASK, Types::THREAD_MERGE_TYPE});
          }
        }
      }

    }
    else
      Logger::warning("Unexpected type in database");
  }
  Logger::message_end();
}

/*
 meaningful messages

        NOT $TYPE & ${MessageTypes.IGNORABLE_TYPESMASK_WHEN_COUNTING} AND
        $TYPE != ${MessageTypes.PROFILE_CHANGE_TYPE} AND
        $TYPE != ${MessageTypes.CHANGE_NUMBER_TYPE} AND
        $TYPE != ${MessageTypes.SMS_EXPORT_TYPE} AND
        $TYPE != ${MessageTypes.BOOST_REQUEST_TYPE} AND
        $TYPE & ${MessageTypes.GROUP_V2_LEAVE_BITS} != ${MessageTypes.GROUP_V2_LEAVE_BITS}

long IGNORABLE_TYPESMASK_WHEN_COUNTING = END_SESSION_BIT | KEY_EXCHANGE_IDENTITY_UPDATE_BIT | KEY_EXCHANGE_IDENTITY_VERIFIED_BIT;

*/