Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
abca5d80
Commit
abca5d80
authored
May 04, 2010
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
storing correct username in the message
parent
627a6dbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
25 deletions
+35
-25
chat.c
examples/chat.c
+35
-25
No files found.
examples/chat.c
View file @
abca5d80
...
@@ -60,6 +60,22 @@ static long last_message_id;
...
@@ -60,6 +60,22 @@ static long last_message_id;
// Protects messages, sessions, last_message_id
// Protects messages, sessions, last_message_id
static
pthread_rwlock_t
rwlock
=
PTHREAD_RWLOCK_INITIALIZER
;
static
pthread_rwlock_t
rwlock
=
PTHREAD_RWLOCK_INITIALIZER
;
// Get session object for the connection. Caller must hold the lock.
static
struct
session
*
get_session
(
const
struct
mg_connection
*
conn
)
{
int
i
;
char
session_id
[
33
];
time_t
now
=
time
(
NULL
);
mg_get_cookie
(
conn
,
"session"
,
session_id
,
sizeof
(
session_id
));
for
(
i
=
0
;
i
<
MAX_SESSIONS
;
i
++
)
{
if
(
sessions
[
i
].
expire
!=
0
&&
sessions
[
i
].
expire
>
now
&&
strcmp
(
sessions
[
i
].
session_id
,
session_id
)
==
0
)
{
break
;
}
}
return
i
==
MAX_SESSIONS
?
NULL
:
&
sessions
[
i
];
}
// Get a get of messages with IDs greater than last_id and transform them
// Get a get of messages with IDs greater than last_id and transform them
// into a JSON string. Return that string to the caller. The string is
// into a JSON string. Return that string to the caller. The string is
// dynamically allocated, caller must free it. If there are no messages,
// dynamically allocated, caller must free it. If there are no messages,
...
@@ -136,6 +152,7 @@ static void ajax_get_messages(struct mg_connection *conn,
...
@@ -136,6 +152,7 @@ static void ajax_get_messages(struct mg_connection *conn,
static
void
ajax_send_message
(
struct
mg_connection
*
conn
,
static
void
ajax_send_message
(
struct
mg_connection
*
conn
,
const
struct
mg_request_info
*
request_info
)
{
const
struct
mg_request_info
*
request_info
)
{
struct
message
*
message
;
struct
message
*
message
;
struct
session
*
session
;
char
text
[
sizeof
(
message
->
text
)
-
1
];
char
text
[
sizeof
(
message
->
text
)
-
1
];
int
is_jsonp
;
int
is_jsonp
;
...
@@ -150,8 +167,10 @@ static void ajax_send_message(struct mg_connection *conn,
...
@@ -150,8 +167,10 @@ static void ajax_send_message(struct mg_connection *conn,
message
=
&
messages
[
last_message_id
%
message
=
&
messages
[
last_message_id
%
(
sizeof
(
messages
)
/
sizeof
(
messages
[
0
]))];
(
sizeof
(
messages
)
/
sizeof
(
messages
[
0
]))];
// TODO(lsm): JSON-encode all text strings
// TODO(lsm): JSON-encode all text strings
strncpy
(
message
->
text
,
text
,
sizeof
(
text
));
session
=
get_session
(
conn
);
strncpy
(
message
->
user
,
"joe"
,
sizeof
(
message
->
user
));
assert
(
session
!=
NULL
);
strlcpy
(
message
->
text
,
text
,
sizeof
(
text
));
strlcpy
(
message
->
user
,
session
->
user
,
sizeof
(
message
->
user
));
message
->
timestamp
=
time
(
0
);
message
->
timestamp
=
time
(
0
);
message
->
id
=
last_message_id
++
;
message
->
id
=
last_message_id
++
;
pthread_rwlock_unlock
(
&
rwlock
);
pthread_rwlock_unlock
(
&
rwlock
);
...
@@ -259,31 +278,22 @@ static void authorize(struct mg_connection *conn,
...
@@ -259,31 +278,22 @@ static void authorize(struct mg_connection *conn,
// Return 1 if request is authorized, 0 otherwise.
// Return 1 if request is authorized, 0 otherwise.
static
int
is_authorized
(
const
struct
mg_connection
*
conn
,
static
int
is_authorized
(
const
struct
mg_connection
*
conn
,
const
struct
mg_request_info
*
request_info
)
{
const
struct
mg_request_info
*
request_info
)
{
char
valid_id
[
33
],
received_id
[
33
];
struct
session
*
session
;
int
i
,
authorized
=
0
;
char
valid_id
[
33
];
int
authorized
=
0
;
mg_get_cookie
(
conn
,
"session"
,
received_id
,
sizeof
(
received_id
));
if
(
received_id
[
0
]
!=
'\0'
)
{
pthread_rwlock_rdlock
(
&
rwlock
);
pthread_rwlock_rdlock
(
&
rwlock
);
if
((
session
=
get_session
(
conn
))
!=
NULL
)
{
for
(
i
=
0
;
i
<
MAX_SESSIONS
;
i
++
)
{
generate_session_id
(
valid_id
,
session
->
random
,
session
->
user
,
request_info
);
if
(
sessions
[
i
].
expire
!=
0
&&
if
(
strcmp
(
valid_id
,
session
->
session_id
)
==
0
)
{
sessions
[
i
].
expire
>
time
(
NULL
)
&&
session
->
expire
=
time
(
0
)
+
SESSION_TTL
;
strcmp
(
sessions
[
i
].
session_id
,
received_id
)
==
0
)
{
authorized
=
1
;
break
;
}
}
if
(
i
<
MAX_SESSIONS
)
{
generate_session_id
(
valid_id
,
sessions
[
i
].
random
,
sessions
[
i
].
user
,
request_info
);
if
(
strcmp
(
valid_id
,
received_id
)
==
0
)
{
sessions
[
i
].
expire
=
time
(
0
)
+
SESSION_TTL
;
authorized
=
1
;
}
}
}
pthread_rwlock_unlock
(
&
rwlock
);
}
}
printf
(
"session: %s, uri: %s, authorized: %s, cookie: %s
\n
"
,
// Printing while holding the lock is a bad idea.
received_id
,
request_info
->
uri
,
authorized
?
"yes"
:
"no"
,
mg_get_header
(
conn
,
"Cookie"
));
printf
(
"session: %s, uri: %s, authorized: %s
\n
"
,
session
->
session_id
,
request_info
->
uri
,
authorized
?
"yes"
:
"no"
);
pthread_rwlock_unlock
(
&
rwlock
);
return
authorized
;
return
authorized
;
}
}
...
...
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