Changes of Revision 483
commit_3134bcc5e8482ebabf0ef6ee4dc9848ae6c60b23.txt
Deleted
commit_b98731de96432cae5dedcb1645831f34f5dbb7db.txt
Added
open5gs_2.7.1.57.3134b.dsc -> open5gs_2.7.1.60.b9873.dsc
Changed
x
1
2
Source: open5gs
3
Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-scp, open5gs-sepp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
Architecture: any
5
-Version: 2.7.1.57.3134b
6
+Version: 2.7.1.60.b9873
7
Maintainer: Harald Welte <laforge@gnumonks.org>
8
Uploaders: Sukchan Lee <acetcom@gmail.com>
9
Homepage: https://open5gs.org
10
11
open5gs-udr deb net optional arch=any
12
open5gs-upf deb net optional arch=any
13
Checksums-Sha1:
14
- 69aeec8d10a4ca533b1e41a61e4f6fa2b02e19c2 14496076 open5gs_2.7.1.57.3134b.tar.xz
15
+ 6dc468f5005863b32ecca5d1e29a9a42e2619101 14497032 open5gs_2.7.1.60.b9873.tar.xz
16
Checksums-Sha256:
17
- 4f9e619d66823158e476819f13b0f7037af46e288b3b3cd93fee3daf14832a3f 14496076 open5gs_2.7.1.57.3134b.tar.xz
18
+ de69a810edce8591bead2ce117ba9187adec2276160fb6d6bb4f516fbf3130b3 14497032 open5gs_2.7.1.60.b9873.tar.xz
19
Files:
20
- ad3473edd1eccb314c9f20f2e9ec040a 14496076 open5gs_2.7.1.57.3134b.tar.xz
21
+ e9af06dff7f00257d81d2f1c7e943635 14497032 open5gs_2.7.1.60.b9873.tar.xz
22
open5gs_2.7.1.57.3134b.tar.xz/.tarball-version -> open5gs_2.7.1.60.b9873.tar.xz/.tarball-version
Changed
4
1
2
-2.7.1.57-3134b
3
+2.7.1.60-b9873
4
open5gs_2.7.1.57.3134b.tar.xz/debian/changelog -> open5gs_2.7.1.60.b9873.tar.xz/debian/changelog
Changed
12
1
2
-open5gs (2.7.1.57.3134b) unstable; urgency=medium
3
+open5gs (2.7.1.60.b9873) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom master feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Tue, 09 Jul 2024 07:36:27 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Tue, 09 Jul 2024 13:49:27 +0000
9
10
open5gs (2.7.1) unstable; urgency=medium
11
12
open5gs_2.7.1.57.3134b.tar.xz/lib/diameter/common/base.h -> open5gs_2.7.1.60.b9873.tar.xz/lib/diameter/common/base.h
Changed
19
1
2
/* the local port for Diameter/TLS (default: 5658) in host byte order */
3
uint16_t cnf_port_tls;
4
5
+ /* default TC timer */
6
+ int cnf_timer_tc;
7
+
8
struct {
9
/* the peer does not relay messages (0xffffff app id) */
10
unsigned no_fwd: 1;
11
12
const char *identity;
13
const char *addr; /* IP address of the remote peer */
14
uint16_t port; /* port to connect to. 0: default. */
15
+ int tc_timer; /* TcTimer value to use for this peer, use default if 0 */
16
} connMAX_NUM_OF_FD_CONN;
17
int num_of_conn;
18
} ogs_diam_config_t;
19
open5gs_2.7.1.57.3134b.tar.xz/lib/diameter/common/config.c -> open5gs_2.7.1.60.b9873.tar.xz/lib/diameter/common/config.c
Changed
20
1
2
if (fd_config->cnf_flags.no_fwd)
3
fd_g_config->cnf_flags.no_fwd = fd_config->cnf_flags.no_fwd;
4
5
+ if (fd_config->cnf_timer_tc)
6
+ fd_g_config->cnf_timer_tc = fd_config->cnf_timer_tc;
7
+
8
/********************************************************************
9
* Diameter Client
10
*/
11
12
fddpi.config.pic_flags.alg = PI_ALGPREF_SCTP;
13
fddpi.config.pic_flags.sec |= PI_SEC_NONE;
14
15
+ fddpi.config.pic_tctimer = fd_config->conni.tc_timer;
16
+
17
fddpi.config.pic_port = fd_config->conni.port;
18
fddpi.pi_diamid = (DiamId_t)fd_config->conni.identity;
19
20
open5gs_2.7.1.57.3134b.tar.xz/src/hss/hss-context.c -> open5gs_2.7.1.60.b9873.tar.xz/src/hss/hss-context.c
Changed
37
1
2
const char *identity = NULL;
3
const char *addr = NULL;
4
uint16_t port = 0;
5
+ int tc_timer = 0;
6
7
if (ogs_yaml_iter_type(&conn_array) ==
8
YAML_MAPPING_NODE) {
9
10
const char *v =
11
ogs_yaml_iter_value(&conn_iter);
12
if (v) port = atoi(v);
13
+ } else if (!strcmp(conn_key, "tc_timer")) {
14
+ const char *v =
15
+ ogs_yaml_iter_value(&conn_iter);
16
+ if (v) tc_timer = atoi(v);
17
} else
18
ogs_warn("unknown key `%s`",
19
conn_key);
20
21
self.diam_config->
22
connself.diam_config->num_of_conn.
23
port = port;
24
+ self.diam_config->
25
+ connself.diam_config->num_of_conn.
26
+ tc_timer = tc_timer;
27
self.diam_config->num_of_conn++;
28
}
29
} while (ogs_yaml_iter_type(&conn_array) ==
30
YAML_SEQUENCE_NODE);
31
+ } else if (!strcmp(fd_key, "tc_timer")) {
32
+ const char *v = ogs_yaml_iter_value(&fd_iter);
33
+ if (v) self.diam_config->cnf_timer_tc = atoi(v);
34
} else
35
ogs_warn("unknown key `%s`", fd_key);
36
}
37
open5gs_2.7.1.57.3134b.tar.xz/src/mme/mme-context.c -> open5gs_2.7.1.60.b9873.tar.xz/src/mme/mme-context.c
Changed
37
1
2
const char *identity = NULL;
3
const char *addr = NULL;
4
uint16_t port = 0;
5
+ int tc_timer = 0;
6
7
if (ogs_yaml_iter_type(&conn_array) ==
8
YAML_MAPPING_NODE) {
9
10
const char *v =
11
ogs_yaml_iter_value(&conn_iter);
12
if (v) port = atoi(v);
13
+ } else if (!strcmp(conn_key, "tc_timer")) {
14
+ const char *v =
15
+ ogs_yaml_iter_value(&conn_iter);
16
+ if (v) tc_timer = atoi(v);
17
} else
18
ogs_warn("unknown key `%s`",
19
conn_key);
20
21
self.diam_config->
22
connself.diam_config->num_of_conn.
23
port = port;
24
+ self.diam_config->
25
+ connself.diam_config->num_of_conn.
26
+ tc_timer = tc_timer;
27
self.diam_config->num_of_conn++;
28
}
29
} while (ogs_yaml_iter_type(&conn_array) ==
30
YAML_SEQUENCE_NODE);
31
+ } else if (!strcmp(fd_key, "tc_timer")) {
32
+ const char *v = ogs_yaml_iter_value(&fd_iter);
33
+ if (v) self.diam_config->cnf_timer_tc = atoi(v);
34
} else
35
ogs_warn("unknown key `%s`", fd_key);
36
}
37
open5gs_2.7.1.57.3134b.tar.xz/src/mme/mme-gtp-path.c -> open5gs_2.7.1.60.b9873.tar.xz/src/mme/mme-gtp-path.c
Changed
39
1
2
ogs_assert(mme_ue_id >= OGS_MIN_POOL_ID &&
3
mme_ue_id <= OGS_MAX_POOL_ID);
4
mme_ue = mme_ue_find_by_id(mme_ue_id);
5
- ogs_assert(mme_ue);
6
+ if (!mme_ue) {
7
+ ogs_error("MME-UE%d has already been removed %d",
8
+ mme_ue_id, type);
9
+ return;
10
+ }
11
break;
12
case OGS_GTP2_CREATE_SESSION_REQUEST_TYPE:
13
case OGS_GTP2_DELETE_SESSION_REQUEST_TYPE:
14
sess_id = OGS_POINTER_TO_UINT(data);
15
ogs_assert(sess_id >= OGS_MIN_POOL_ID && sess_id <= OGS_MAX_POOL_ID);
16
sess = mme_sess_find_by_id(sess_id);
17
- ogs_assert(sess);
18
+ if (!sess) {
19
+ ogs_error("Session%d has already been removed %d",
20
+ sess_id, type);
21
+ return;
22
+ }
23
mme_ue = mme_ue_find_by_id(sess->mme_ue_id);
24
ogs_assert(mme_ue);
25
break;
26
27
ogs_assert(bearer_id >= OGS_MIN_POOL_ID &&
28
bearer_id <= OGS_MAX_POOL_ID);
29
bearer = mme_bearer_find_by_id(bearer_id);
30
- ogs_assert(bearer);
31
+ if (!bearer) {
32
+ ogs_error("Bearer%d has already been removed %d",
33
+ bearer_id, type);
34
+ return;
35
+ }
36
sess = mme_sess_find_by_id(bearer->sess_id);
37
ogs_assert(sess);
38
mme_ue = mme_ue_find_by_id(sess->mme_ue_id);
39
open5gs_2.7.1.57.3134b.tar.xz/src/pcrf/pcrf-context.c -> open5gs_2.7.1.60.b9873.tar.xz/src/pcrf/pcrf-context.c
Changed
37
1
2
const char *identity = NULL;
3
const char *addr = NULL;
4
uint16_t port = 0;
5
+ int tc_timer = 0;
6
7
if (ogs_yaml_iter_type(&conn_array) ==
8
YAML_MAPPING_NODE) {
9
10
const char *v =
11
ogs_yaml_iter_value(&conn_iter);
12
if (v) port = atoi(v);
13
+ } else if (!strcmp(conn_key, "tc_timer")) {
14
+ const char *v =
15
+ ogs_yaml_iter_value(&conn_iter);
16
+ if (v) tc_timer = atoi(v);
17
} else
18
ogs_warn("unknown key `%s`",
19
conn_key);
20
21
self.diam_config->
22
connself.diam_config->num_of_conn.
23
port = port;
24
+ self.diam_config->
25
+ connself.diam_config->num_of_conn.
26
+ tc_timer = tc_timer;
27
self.diam_config->num_of_conn++;
28
}
29
} while (ogs_yaml_iter_type(&conn_array) ==
30
YAML_SEQUENCE_NODE);
31
+ } else if (!strcmp(fd_key, "tc_timer")) {
32
+ const char *v = ogs_yaml_iter_value(&fd_iter);
33
+ if (v) self.diam_config->cnf_timer_tc = atoi(v);
34
} else
35
ogs_warn("unknown key `%s`", fd_key);
36
}
37
open5gs_2.7.1.57.3134b.tar.xz/src/smf/context.c -> open5gs_2.7.1.60.b9873.tar.xz/src/smf/context.c
Changed
37
1
2
const char *identity = NULL;
3
const char *addr = NULL;
4
uint16_t port = 0;
5
+ int tc_timer = 0;
6
7
if (ogs_yaml_iter_type(&conn_array) ==
8
YAML_MAPPING_NODE) {
9
10
const char *v =
11
ogs_yaml_iter_value(&conn_iter);
12
if (v) port = atoi(v);
13
+ } else if (!strcmp(conn_key, "tc_timer")) {
14
+ const char *v =
15
+ ogs_yaml_iter_value(&conn_iter);
16
+ if (v) tc_timer = atoi(v);
17
} else
18
ogs_warn("unknown key `%s`",
19
conn_key);
20
21
self.diam_config->
22
connself.diam_config->num_of_conn.
23
port = port;
24
+ self.diam_config->
25
+ connself.diam_config->num_of_conn.
26
+ tc_timer = tc_timer;
27
self.diam_config->num_of_conn++;
28
}
29
} while (ogs_yaml_iter_type(&conn_array) ==
30
YAML_SEQUENCE_NODE);
31
+ } else if (!strcmp(fd_key, "tc_timer")) {
32
+ const char *v = ogs_yaml_iter_value(&fd_iter);
33
+ if (v) self.diam_config->cnf_timer_tc = atoi(v);
34
} else
35
ogs_warn("unknown key `%s`", fd_key);
36
}
37