Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
systemd
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
steam
systemd
Commits
51038c03
Commit
51038c03
authored
Apr 12, 2013
by
Lennart Poettering
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbus: fill in kdbus sender+destination from kdbus data
parent
4e6db592
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
4 deletions
+28
-4
src/libsystemd-bus/bus-kernel.c
src/libsystemd-bus/bus-kernel.c
+24
-4
src/libsystemd-bus/bus-message.h
src/libsystemd-bus/bus-message.h
+3
-0
src/libsystemd-bus/kdbus.h
src/libsystemd-bus/kdbus.h
+1
-0
No files found.
src/libsystemd-bus/bus-kernel.c
View file @
51038c03
...
...
@@ -69,9 +69,9 @@ static void append_destination(struct kdbus_msg_data **d, const char *s, size_t
assert
(
d
);
assert
(
d
);
(
*
d
)
->
size
=
offsetof
(
struct
kdbus_msg_data
,
data
)
+
length
+
1
;
(
*
d
)
->
size
=
offsetof
(
struct
kdbus_msg_data
,
str
)
+
length
+
1
;
(
*
d
)
->
type
=
KDBUS_MSG_DST_NAME
;
memcpy
((
*
d
)
->
data
,
s
,
length
+
1
);
memcpy
((
*
d
)
->
str
,
s
,
length
+
1
);
*
d
=
(
struct
kdbus_msg_data
*
)
((
uint8_t
*
)
*
d
+
ALIGN8
((
*
d
)
->
size
));
}
...
...
@@ -211,7 +211,7 @@ int bus_kernel_write_message(sd_bus *bus, sd_bus_message *m) {
if
(
r
<
0
)
return
errno
==
EAGAIN
?
0
:
-
errno
;
return
0
;
return
1
;
}
static
void
close_kdbus_msg
(
struct
kdbus_msg
*
k
)
{
...
...
@@ -235,6 +235,7 @@ static int bus_kernel_make_message(sd_bus *bus, struct kdbus_msg *k, sd_bus_mess
size_t
total
,
n_bytes
=
0
,
idx
=
0
;
struct
kdbus_creds
*
creds
=
NULL
;
uint64_t
nsec
=
0
;
const
char
*
destination
=
NULL
;
int
r
;
assert
(
bus
);
...
...
@@ -278,6 +279,8 @@ static int bus_kernel_make_message(sd_bus *bus, struct kdbus_msg *k, sd_bus_mess
creds
=
&
d
->
creds
;
else
if
(
d
->
type
==
KDBUS_MSG_TIMESTAMP
)
nsec
=
d
->
ts_ns
;
else
if
(
d
->
type
==
KDBUS_MSG_DST_NAME
)
destination
=
d
->
str
;
}
if
(
!
h
)
...
...
@@ -333,6 +336,23 @@ static int bus_kernel_make_message(sd_bus *bus, struct kdbus_msg *k, sd_bus_mess
return
r
;
}
if
(
k
->
src_id
==
KDBUS_SRC_ID_KERNEL
)
m
->
sender
=
"org.freedesktop.DBus"
;
else
{
snprintf
(
m
->
sender_buffer
,
sizeof
(
m
->
sender_buffer
),
":1.%llu"
,
(
unsigned
long
long
)
k
->
src_id
);
m
->
sender
=
m
->
sender_buffer
;
}
if
(
!
m
->
destination
)
{
if
(
destination
)
m
->
destination
=
destination
;
else
if
(
k
->
dst_id
!=
KDBUS_DST_ID_WELL_KNOWN_NAME
&&
k
->
dst_id
!=
KDBUS_DST_ID_BROADCAST
)
{
snprintf
(
m
->
destination_buffer
,
sizeof
(
m
->
destination_buffer
),
":1.%llu"
,
(
unsigned
long
long
)
k
->
dst_id
);
m
->
destination
=
m
->
destination_buffer
;
}
}
/* We take possession of the kmsg struct now */
m
->
kdbus
=
k
;
m
->
free_kdbus
=
true
;
...
...
@@ -389,7 +409,7 @@ int bus_kernel_read_message(sd_bus *bus, sd_bus_message **m) {
else
close_kdbus_msg
(
k
);
return
r
;
return
r
<
0
?
r
:
1
;
}
int
bus_kernel_create
(
const
char
*
name
,
char
**
s
)
{
...
...
src/libsystemd-bus/bus-message.h
View file @
51038c03
...
...
@@ -102,6 +102,9 @@ struct sd_bus_message {
char
*
peeked_signature
;
usec_t
timeout
;
char
sender_buffer
[
3
+
DECIMAL_STR_MAX
(
uint64_t
)
+
1
];
char
destination_buffer
[
3
+
DECIMAL_STR_MAX
(
uint64_t
)
+
1
];
};
#define BUS_MESSAGE_NEED_BSWAP(m) ((m)->header->endian != SD_BUS_NATIVE_ENDIAN)
...
...
src/libsystemd-bus/kdbus.h
View file @
51038c03
...
...
@@ -105,6 +105,7 @@ struct kdbus_msg_data {
union
{
/* inline data */
__u8
data
[
0
];
char
str
[
0
];
__u32
data_u32
[
0
];
__u64
data_u64
[
0
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment