commit - d907758cbe632fc02ea32fa9363f1b427ed21c32
commit + 9925e94074a73e68c23232d9db686bdee44ebae6
blob - 2b2318d81f74d2c1bfb5dd384acc1b61b4d31c91
blob + 6a93d428b645fa7449b875471e7683b83ab8a090
--- gotd/session_write.c
+++ gotd/session_write.c
if (notif == NULL)
return got_error(GOT_ERR_PRIVSEP_MSG);
- STAILQ_REMOVE(¬ifications, notif, gotd_session_notif, entry);
-
if (notif->action != icontent.action || notif->fd == -1 ||
strcmp(notif->refname, refname) != 0) {
err = got_error(GOT_ERR_PRIVSEP_MSG);
imsg_close(&iev->ibuf, wbuf);
gotd_imsg_event_add(iev);
done:
- if (notif->fd != -1)
- close(notif->fd);
- free(notif);
free(refname);
free(id_str);
return err;
return NULL;
}
+static const struct got_error *
+report_ref_updates(int do_notify)
+{
+ const struct got_error *err;
+ struct gotd_session_notif *notif;
+
+ err = send_refs_updated(&gotd_session.parent_iev);
+ if (err) {
+ log_warn("%s", err->msg);
+ return err;
+ }
+
+ if (do_notify) {
+ notif = STAILQ_FIRST(¬ifications);
+ if (notif == NULL)
+ return NULL;
+
+ err = request_notification(notif);
+ if (err) {
+ log_warn("could not send notification: %s", err->msg);
+ return err;
+ }
+ }
+
+ return NULL;
+}
+
static void
session_dispatch_repo_child(int fd, short event, void *arg)
{
else
disconnect(client);
} else {
- struct gotd_session_notif *notif;
-
if (do_packfile_verification) {
err = verify_packfile(iev);
} else if (do_content_verification) {
if (do_ref_update && client->nref_updates > 0) {
client->nref_updates--;
if (client->nref_updates == 0) {
- err = send_refs_updated(
- &gotd_session.parent_iev);
- if (err) {
- log_warn("%s", err->msg);
+ err = report_ref_updates(do_notify);
+ if (err)
shut = 1;
- }
}
}
-
- notif = STAILQ_FIRST(¬ifications);
- if (notif && do_notify) {
- /* Request content for next notification. */
- err = request_notification(notif);
- if (err) {
- log_warn("could not send notification: "
- "%s", err->msg);
- shut = 1;
- }
- }
}
+
imsg_free(&imsg);
+
+ if (err)
+ break;
}
done:
if (!shut) {
log_warn("unexpected imsg %d", imsg.hdr.type);
break;
}
+
+ /* First notification on our list has now been sent. */
notif = STAILQ_FIRST(¬ifications);
+ STAILQ_REMOVE_HEAD(¬ifications, entry);
+ if (notif->fd != -1)
+ close(notif->fd);
+ free(notif);
+
+ notif = STAILQ_FIRST(¬ifications);
if (notif == NULL) {
disconnect(client);
break; /* NOTREACHED */