Description
Bug description
This is an unusual one. I have some code that was grabbing the grandparents of columnview listcell entries so that I could use them for dragging and drop, since painting a single cell looked bizarre. It worked fine in GTK 4.10, but with 4.12 gtk-rs in particular breaks.
Just calling drop(child.parent().unwrap().parent())
crashes the application by inadvertently freeing the last reference to child
's grandparent, which is obviously wrong and should never happen.
I am not completely certain this is a gtk-rs bug, but I've tried reproducing this with similar code against gtk itself in C (manually using ref/unref, so if the problem was objects being created with 0 refcount I would have triggered it), and I could not reproduce it despite trying multiple ways.
Reproduction
Apply the patch to examples/column_view_datagrid/main.rs
and run with cargo run --bin column_view_datagrid
against gtk4.12.
The output I get is honestly bizarre. Notably the grandparent refcount is 1, not 2, so as soon as gp
is dropped the grandparent GtkColumnViewRowWidget is disposed, which breaks everything going forward. The timeout seems necessary as if I exclude it the breakage doesn't happen. Without the timeout, the grandparent refcount is properly 2 in these logs.
Parent Widget { inner: TypedObjectRef { inner: 0x55ee326f4040, type: GtkColumnViewCellWidget } }, refcount: 2
Grandparent Widget { inner: TypedObjectRef { inner: 0x55ee326f37b0, type: GtkColumnViewRowWidget } }, refcount: 1
(column_view_datagrid:1828183): Gtk-CRITICAL **: 21:27:15.295: gtk_widget_set_state_flags: assertion 'GTK_IS_WIDGET (widget)' failed
(column_view_datagrid:1828183): Gtk-CRITICAL **: 21:27:15.296: gtk_accessible_update_state: assertion 'GTK_IS_ACCESSIBLE (self)' failed
(column_view_datagrid:1828183): Gtk-CRITICAL **: 21:27:15.296: gtk_widget_get_next_sibling: assertion 'GTK_IS_WIDGET (widget)' failed
(column_view_datagrid:1828183): Gtk-CRITICAL **: 21:27:15.296: gtk_widget_set_state_flags: assertion 'GTK_IS_WIDGET (widget)' failed
(column_view_datagrid:1828183): Gtk-CRITICAL **: 21:27:15.296: gtk_accessible_update_state: assertion 'GTK_IS_ACCESSIBLE (self)' failed
(column_view_datagrid:1828183): Gtk-CRITICAL **: 21:27:15.296: gtk_widget_insert_after: assertion 'GTK_IS_WIDGET (widget)' failed
Parent Widget { inner: TypedObjectRef { inner: 0x55ee32e823b0, type: GtkColumnViewCellWidget } }, refcount: 2
Grandparent Widget { inner: TypedObjectRef { inner: 0x55ee32e7fb10, type: GtkColumnViewRowWidget } }, refcount: 1
(column_view_datagrid:1828183): Gtk-CRITICAL **: 21:27:15.296: gtk_widget_get_next_sibling: assertion 'GTK_IS_WIDGET (widget)' failed
(column_view_datagrid:1828183): Gtk-CRITICAL **: 21:27:15.296: gtk_widget_insert_after: assertion 'GTK_IS_WIDGET (widget)' failed
.... many repetitions
zsh: segmentation fault (core dumped) cargo run --bin column_view_datagrid
Grandparent Widget { inner: TypedObjectRef { inner: 0x55ee326f37b0, type: GtkColumnViewRowWidget } }, refcount: 1
should have a refcount of 2, not 1.
Backtrace
This is a segfault, and the gdb output isn't terribly interesting either.
patch here
diff --git a/examples/column_view_datagrid/main.rs b/examples/column_view_datagrid/main.rs
index 90c877f2a0..8c2cbf6bdf 100644
--- a/examples/column_view_datagrid/main.rs
+++ b/examples/column_view_datagrid/main.rs
@@ -33,11 +33,14 @@ fn build_ui(application: >k::Application) {
let store = gio::ListStore::new::<BoxedAnyObject>();
- (0..10000).for_each(|i| {
- store.append(&BoxedAnyObject::new(Row {
- col1: format!("col1 {i}"),
- col2: format!("col2 {i}"),
- }))
+ let store_2 = store.clone();
+ glib::timeout_add_local_once(std::time::Duration::from_secs(1), move || {
+ (0..10000).for_each(|i| {
+ store_2.append(&BoxedAnyObject::new(Row {
+ col1: format!("col1 {i}"),
+ col2: format!("col2 {i}"),
+ }))
+ });
});
let sel = gtk::SingleSelection::new(Some(store));
let columnview = gtk::ColumnView::new(Some(sel));
@@ -58,7 +61,12 @@ fn build_ui(application: >k::Application) {
let ent = Entry {
name: r.col1.to_string(),
};
+
child.set_entry(&ent);
+ let p = child.parent().unwrap();
+ let gp = p.parent().unwrap();
+ println!("Parent {p:?}, refcount: {}", p.ref_count());
+ println!("Grandparent {gp:?}, refcount: {}", gp.ref_count());
});
col2factory.connect_setup(move |_factory, item| {
let item = item.downcast_ref::<gtk::ListItem>().unwrap();