]> www.infradead.org Git - users/hch/dma-mapping.git/commitdiff
selftest: af_unix: Add non-TCP-compliant test cases in msg_oob.c.
authorKuniyuki Iwashima <kuniyu@amazon.com>
Tue, 25 Jun 2024 01:36:39 +0000 (18:36 -0700)
committerPaolo Abeni <pabeni@redhat.com>
Thu, 27 Jun 2024 10:05:01 +0000 (12:05 +0200)
While testing, I found some weird behaviour on the TCP side as well.

For example, TCP drops the preceding OOB data when queueing a new
OOB data if the old OOB data is at the head of recvq.

  #  RUN           msg_oob.no_peek.ex_oob_drop ...
  # msg_oob.c:146:ex_oob_drop:AF_UNIX :x
  # msg_oob.c:147:ex_oob_drop:TCP     :Resource temporarily unavailable
  # msg_oob.c:146:ex_oob_drop:AF_UNIX :y
  # msg_oob.c:147:ex_oob_drop:TCP     :Invalid argument
  #            OK  msg_oob.no_peek.ex_oob_drop
  ok 9 msg_oob.no_peek.ex_oob_drop

  #  RUN           msg_oob.no_peek.ex_oob_drop_2 ...
  # msg_oob.c:146:ex_oob_drop_2:AF_UNIX :x
  # msg_oob.c:147:ex_oob_drop_2:TCP     :Resource temporarily unavailable
  #            OK  msg_oob.no_peek.ex_oob_drop_2
  ok 10 msg_oob.no_peek.ex_oob_drop_2

This patch allows AF_UNIX's MSG_OOB implementation to produce different
results from TCP when operations are guarded with tcp_incompliant{}.

Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
tools/testing/selftests/net/af_unix/msg_oob.c

index b5226ccec3ecef3c3bfe4b324989801087aa148b..46e92d06b0a399aa26bd2984768caac5c481136d 100644 (file)
@@ -19,6 +19,7 @@ FIXTURE(msg_oob)
                                 * 2: TCP sender
                                 * 3: TCP receiver
                                 */
+       bool tcp_compliant;
 };
 
 FIXTURE_VARIANT(msg_oob)
@@ -88,6 +89,8 @@ FIXTURE_SETUP(msg_oob)
 {
        create_unix_socketpair(_metadata, self);
        create_tcp_socketpair(_metadata, self);
+
+       self->tcp_compliant = true;
 }
 
 FIXTURE_TEARDOWN(msg_oob)
@@ -115,6 +118,7 @@ static void __recvpair(struct __test_metadata *_metadata,
 {
        int i, ret[2], recv_errno[2], expected_errno = 0;
        char recv_buf[2][BUF_SZ] = {};
+       bool printed = false;
 
        ASSERT_GE(BUF_SZ, buf_len);
 
@@ -142,8 +146,12 @@ static void __recvpair(struct __test_metadata *_metadata,
                TH_LOG("AF_UNIX :%s", ret[0] < 0 ? strerror(recv_errno[0]) : recv_buf[0]);
                TH_LOG("TCP     :%s", ret[1] < 0 ? strerror(recv_errno[1]) : recv_buf[1]);
 
-               ASSERT_EQ(ret[0], ret[1]);
-               ASSERT_EQ(recv_errno[0], recv_errno[1]);
+               printed = true;
+
+               if (self->tcp_compliant) {
+                       ASSERT_EQ(ret[0], ret[1]);
+                       ASSERT_EQ(recv_errno[0], recv_errno[1]);
+               }
        }
 
        if (expected_len >= 0) {
@@ -159,10 +167,13 @@ static void __recvpair(struct __test_metadata *_metadata,
 
                cmp = strncmp(recv_buf[0], recv_buf[1], expected_len);
                if (cmp) {
-                       TH_LOG("AF_UNIX :%s", ret[0] < 0 ? strerror(recv_errno[0]) : recv_buf[0]);
-                       TH_LOG("TCP     :%s", ret[1] < 0 ? strerror(recv_errno[1]) : recv_buf[1]);
+                       if (!printed) {
+                               TH_LOG("AF_UNIX :%s", ret[0] < 0 ? strerror(recv_errno[0]) : recv_buf[0]);
+                               TH_LOG("TCP     :%s", ret[1] < 0 ? strerror(recv_errno[1]) : recv_buf[1]);
+                       }
 
-                       ASSERT_EQ(cmp, 0);
+                       if (self->tcp_compliant)
+                               ASSERT_EQ(cmp, 0);
                }
        }
 }
@@ -180,6 +191,11 @@ static void __recvpair(struct __test_metadata *_metadata,
                           expected_buf, expected_len, buf_len, flags); \
        } while (0)
 
+#define tcp_incompliant                                                        \
+       for (self->tcp_compliant = false;                               \
+            self->tcp_compliant == false;                              \
+            self->tcp_compliant = true)
+
 TEST_F(msg_oob, non_oob)
 {
        sendpair("x", 1, 0);
@@ -249,4 +265,27 @@ TEST_F(msg_oob, ex_oob_break)
        recvpair("ld", 2, 2, 0);
 }
 
+TEST_F(msg_oob, ex_oob_drop)
+{
+       sendpair("x", 1, MSG_OOB);
+       sendpair("y", 1, MSG_OOB);              /* TCP drops "x" at this moment. */
+
+       tcp_incompliant {
+               recvpair("x", 1, 1, 0);         /* TCP drops "y" by passing through it. */
+               recvpair("y", 1, 1, MSG_OOB);   /* TCP returns -EINVAL. */
+       }
+}
+
+TEST_F(msg_oob, ex_oob_drop_2)
+{
+       sendpair("x", 1, MSG_OOB);
+       sendpair("y", 1, MSG_OOB);              /* TCP drops "x" at this moment. */
+
+       recvpair("y", 1, 1, MSG_OOB);
+
+       tcp_incompliant {
+               recvpair("x", 1, 1, 0);         /* TCP returns -EAGAIN. */
+       }
+}
+
 TEST_HARNESS_MAIN