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
|
/* ==== test_sock_1.c =========================================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
* Description : Test pthread_create() and pthread_exit() calls.
*
* 1.00 93/08/03 proven
* -Started coding this file.
*/
#include <pthread.h>
#include <errno.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include "test.h"
#include <sched.h>
#include <string.h>
#include <stdlib.h>
struct sockaddr_in a_sout;
int success = 0;
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_attr_t attr;
static int counter = 0;
void *
sock_connect(arg)
void *arg;
{
char buf[1024];
int fd;
/* Ensure sock_read runs first */
CHECKr(pthread_mutex_lock(&mutex));
a_sout.sin_addr.s_addr = htonl(0x7f000001); /* loopback */
CHECKe(fd = socket(AF_INET, SOCK_STREAM, 0));
ASSERT(++counter == 2);
/* connect to the socket */
CHECKe(connect(fd, (struct sockaddr *) &a_sout, sizeof(a_sout)));
CHECKe(close(fd));
CHECKr(pthread_mutex_unlock(&mutex));
CHECKe(fd = socket(AF_INET, SOCK_STREAM, 0));
ASSERT(++counter == 3);
CHECKe(connect(fd, (struct sockaddr *) &a_sout, sizeof(a_sout)));
/* Ensure sock_read runs again */
pthread_yield();
sleep(1);
CHECKr(pthread_mutex_lock(&mutex));
CHECKe(read(fd, buf, 1024));
write(fd, "6", 1);
ASSERT(++counter == atoi(buf));
CHECKe(close(fd));
success++;
CHECKr(pthread_mutex_unlock(&mutex));
return(NULL);
}
void *
sock_write(arg)
void *arg;
{
int fd = *(int *)arg;
CHECKe(write(fd, "5", 1));
return(NULL);
}
void *
sock_accept(arg)
void *arg;
{
pthread_t thread;
struct sockaddr a_sin;
int a_sin_size, a_fd, fd;
short port;
char buf[1024];
port = 3276;
a_sout.sin_family = AF_INET;
a_sout.sin_port = htons(port);
a_sout.sin_addr.s_addr = INADDR_ANY;
CHECKe(a_fd = socket(AF_INET, SOCK_STREAM, 0));
while (1) {
if(0 == bind(a_fd, (struct sockaddr *) &a_sout, sizeof(a_sout)))
break;
if (errno == EADDRINUSE) {
a_sout.sin_port = htons((++port));
continue;
}
DIE(errno, "bind");
}
CHECKe(listen(a_fd, 2));
ASSERT(++counter == 1);
CHECKr(pthread_create(&thread, &attr, sock_connect,
(void *)0xdeadbeaf));
a_sin_size = sizeof(a_sin);
CHECKe(fd = accept(a_fd, &a_sin, &a_sin_size));
CHECKr(pthread_mutex_lock(&mutex));
CHECKe(close(fd));
ASSERT(++counter == 4);
a_sin_size = sizeof(a_sin);
CHECKe(fd = accept(a_fd, &a_sin, &a_sin_size));
CHECKr(pthread_mutex_unlock(&mutex));
/* Setup a write thread */
CHECKr(pthread_create(&thread, &attr, sock_write, &fd));
CHECKe(read(fd, buf, 1024));
ASSERT(++counter == atoi(buf));
CHECKe(close(fd));
CHECKr(pthread_mutex_lock(&mutex));
success++;
CHECKr(pthread_mutex_unlock(&mutex));
CHECKr(pthread_join(thread, NULL));
return(NULL);
}
int
main()
{
pthread_t thread;
setbuf(stdout, NULL);
setbuf(stderr, NULL);
CHECKr(pthread_attr_init(&attr));
#if 0
CHECKr(pthread_attr_setschedpolicy(&attr, SCHED_FIFO));
#endif
CHECKr(pthread_create(&thread, &attr, sock_accept,
(void *)0xdeadbeaf));
CHECKr(pthread_join(thread, NULL));
ASSERT(success == 2);
SUCCEED;
}
|