After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 626748 - Use async methods for writing and handle EAGAIN
Use async methods for writing and handle EAGAIN
Status: RESOLVED FIXED
Product: glib
Classification: Platform
Component: gdbus
unspecified
Other Linux
: Normal normal
: ---
Assigned To: David Zeuthen (not reading bugmail)
gtkdev
Depends on:
Blocks:
 
 
Reported: 2010-08-12 16:10 UTC by David Zeuthen (not reading bugmail)
Modified: 2010-08-16 17:56 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
overflow test case (4.14 KB, patch)
2010-08-12 18:22 UTC, David Zeuthen (not reading bugmail)
none Details | Review
Revised test (4.23 KB, patch)
2010-08-12 18:35 UTC, David Zeuthen (not reading bugmail)
none Details | Review

Description David Zeuthen (not reading bugmail) 2010-08-12 16:10:04 UTC
This can happen if the user sends a ton of data and the other peer isn't responding. Notes

 - we should not be overly clever and just disconnect the other peer - that
   is too magical

 - maybe provide a way to get the number (and size in bytes?) of
   outstanding messages so the application can do something intelligent
   like changing it's rate of transmission?
   - use case: app transmitting video frames to another peer
Comment 1 David Zeuthen (not reading bugmail) 2010-08-12 16:13:15 UTC
Btw, see Michael's message that started this:

 http://mail.gnome.org/archives/gtk-devel-list/2010-August/msg00072.html
Comment 2 David Zeuthen (not reading bugmail) 2010-08-12 18:22:01 UTC
Created attachment 167758 [details] [review]
overflow test case

Here's a quick stab at writing a test-case (unfinished, I'm leaking the child) that overflows. The output is as follows:

$ ./gdbus-peer -p /gdbus/overflow
/gdbus/overflow: 0 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 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 g_dbus_connection_real_closed: Remote peer vanished with error: Error sending data: Resource temporarily unavailable (g-io-error-quark, 27). Exiting.
Terminated

e.g. some I/O function fails with G_IO_ERROR_WOULD_BLOCK (== error code 27) as expected.
Comment 3 David Zeuthen (not reading bugmail) 2010-08-12 18:35:28 UTC
Created attachment 167761 [details] [review]
Revised test

Here's an improved test - turns out, using G_DBUS_DEBUG=all that the other end was still receiving messages - of course the sleep() call in the child didn't affect the IO thread. So, instead, just send SIGSTOP to the child. Now G_DBUS_DEBUG=all output suggests that only messages are sent. We appear to start failing around 189-196 messages. Each message weighs 109 bytes as per G_DBUS_DEBUG=all output (see [1]). Is the normal buffer size of a socket around 20KB?

    David

[1] :
========================================================================
GDBus-debug:Message:
  >>>> SENT D-Bus message (109 bytes)
  Type:    signal
  Flags:   no-reply-expected
  Version: 0
  Serial:  190
  Headers:
    path -> objectpath '/org/foo/Object'
    interface -> 'org.foo.Interface'
    member -> 'Member'
    signature -> signature 's'
  Body: ('a string',)
  UNIX File Descriptors:
    (none)
  0000: 6c 04 01 01  0d 00 00 00  be 00 00 00  4a 00 00 00    l...........J...
  0010: 08 01 67 00  01 73 00 00  01 01 6f 00  0f 00 00 00    ..g..s....o.....
  0020: 2f 6f 72 67  2f 66 6f 6f  2f 4f 62 6a  65 63 74 00    /org/foo/Object.
  0030: 03 01 73 00  06 00 00 00  4d 65 6d 62  65 72 00 00    ..s.....Member..
  0040: 02 01 73 00  11 00 00 00  6f 72 67 2e  66 6f 6f 2e    ..s.....org.foo.
  0050: 49 6e 74 65  72 66 61 63  65 00 00 00  00 00 00 00    Interface.......
  0060: 08 00 00 00  61 20 73 74  72 69 6e 67  00             ....a string.
Comment 4 David Zeuthen (not reading bugmail) 2010-08-13 14:16:28 UTC
Updating summary to reflect that we should also use async methods for writing the message to the stream.
Comment 5 David Zeuthen (not reading bugmail) 2010-08-13 18:14:08 UTC
Michael contributed a simpler test case - it is currently disabled as we don't want to break 'make check' - see

http://git.gnome.org/browse/glib/commit/?id=9be94e88999b5f10347b5c1b8542b88a35d3f93a
Comment 6 David Zeuthen (not reading bugmail) 2010-08-15 23:35:30 UTC
I have an almost-finished patch that fixes this problem by using g_output_stream_write_async() instead of g_output_stream_write() (and ditto for using GSocket when sending FDs). I will commit the patch tomorrow - stay tuned.

Also, after talking to danw, we decided that g_output_stream_write_async() guarantees that it will never fail with EWOULDBLOCK (none of the existing implementations (e.g. GSocketOutputStream, GUnixOutputStream) does that) - instead it just waits until space is available. I will follow up with a patch that explicitly mentions this guarantee in the docs.
Comment 7 David Zeuthen (not reading bugmail) 2010-08-16 17:56:16 UTC
OK, fixed with this commit

 http://git.gnome.org/browse/glib/commit/?id=8a3a4596e2e3a718d77bf214c6e2d16c21856da2

(note the additional case and the `transport' debug option too)