aboutsummaryrefslogtreecommitdiffstats
path: root/cms-backd/src/main.rs
blob: 618efaf2093868546a1979d844d9cd53d1ac71c9 (plain)
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
// -*- coding: utf-8 -*-
//
// Simple CMS
//
// Copyright (C) 2011-2024 Michael Büsch <m@bues.ch>
//
// Licensed under the Apache License version 2.0
// or the MIT license, at your option.
// SPDX-License-Identifier: Apache-2.0 OR MIT

#![forbid(unsafe_code)]

mod anchor;
mod args;
mod backend;
mod cache;
mod comm;
mod config;
mod cookie;
mod formfields;
mod index;
mod itertools;
mod navtree;
mod numparse;
mod pagegen;
mod query;
mod reply;
mod resolver;
mod sitemap;

use crate::{
    args::{CmsGetArgs, CmsPostArgs},
    backend::CmsBack,
    cache::CmsCache,
    config::CmsConfig,
    cookie::Cookie,
    query::Query,
    reply::CmsReply,
};
use anyhow::{self as ah, format_err as err, Context as _};
use clap::Parser;
use cms_socket::{CmsSocket, CmsSocketConn, MsgSerde};
use cms_socket_back::{Msg, SOCK_FILE};
use std::{
    num::NonZeroUsize,
    path::PathBuf,
    sync::Arc,
    time::{Duration, Instant},
};
use tokio::{
    runtime,
    signal::unix::{signal, SignalKind},
    sync, task,
};

#[derive(Parser, Debug, Clone)]
struct Opts {
    /// The run directory for runtime data.
    #[arg(long, default_value = "/run")]
    rundir: PathBuf,

    /// The number of elements held in the cache.
    #[arg(long, default_value = "1024")]
    cache_size: usize,

    /// Always run in non-systemd mode.
    #[arg(long, default_value = "false")]
    no_systemd: bool,

    /// Set the number async worker threads.
    #[arg(long, default_value = "3")]
    worker_threads: NonZeroUsize,
}

async fn process_conn(
    mut conn: CmsSocketConn,
    config: Arc<CmsConfig>,
    cache: Arc<CmsCache>,
    opts: Arc<Opts>,
) -> ah::Result<()> {
    let mut back = CmsBack::new(Arc::clone(&config), cache, &opts.rundir).await;
    loop {
        let msg = conn.recv_msg(Msg::try_msg_deserialize).await?;

        let start_stamp = if config.debug() {
            Some(Instant::now())
        } else {
            None
        };

        let mut reply: CmsReply = match msg {
            Some(Msg::Get {
                host,
                path,
                https,
                cookie,
                query,
            }) => {
                let path = path.into_cleaned_path().into_checked_sys()?;

                back.get(&CmsGetArgs {
                    host,
                    path,
                    _cookie: Cookie::new(cookie),
                    query: Query::new(query),
                    https,
                })
                .await
            }
            Some(Msg::Post {
                host,
                path,
                https,
                cookie,
                query,
                body,
                body_mime,
            }) => {
                let path = path.into_cleaned_path().into_checked()?;

                back.post(
                    &CmsGetArgs {
                        host,
                        path,
                        _cookie: Cookie::new(cookie),
                        query: Query::new(query),
                        https,
                    },
                    &CmsPostArgs { body, body_mime },
                )
                .await
            }
            Some(Msg::Reply { .. }) => {
                eprintln!("Received unsupported message.");
                continue;
            }
            None => {
                #[cfg(debug_assertions)]
                eprintln!("Client disconnected.");
                return Ok(());
            }
        };

        if let Some(start_stamp) = start_stamp {
            let runtime = (Instant::now() - start_stamp).as_micros();
            reply.add_http_header(&format!("X-CMS-Backend-Runtime: {runtime} us"));
        }

        let reply_msg: Msg = reply.into();
        conn.send_msg(&reply_msg).await?;
    }
}

async fn async_main(opts: Arc<Opts>) -> ah::Result<()> {
    let (main_exit_tx, mut main_exit_rx) = sync::mpsc::channel(1);

    let mut sigterm = signal(SignalKind::terminate()).unwrap();
    let mut sigint = signal(SignalKind::interrupt()).unwrap();
    let mut sighup = signal(SignalKind::hangup()).unwrap();

    let mut sock = CmsSocket::from_systemd_or_path(opts.no_systemd, &opts.rundir.join(SOCK_FILE))?;
    let config = Arc::new(CmsConfig::new().context("backd.conf")?);

    //TODO install seccomp filter.

    let cache = Arc::new(CmsCache::new(opts.cache_size));

    // Task: Socket handler.
    let config_sock = Arc::clone(&config);
    let cache_sock = Arc::clone(&cache);
    let opts_sock = Arc::clone(&opts);
    task::spawn(async move {
        loop {
            let config = Arc::clone(&config_sock);
            let cache = Arc::clone(&cache_sock);
            let opts = Arc::clone(&opts_sock);
            match sock.accept().await {
                Ok(conn) => {
                    // Socket connection handler.
                    task::spawn(async move {
                        if let Err(e) = process_conn(conn, config, cache, opts).await {
                            eprintln!("Client error: {e}");
                        }
                    });
                }
                Err(e) => {
                    let _ = main_exit_tx.send(Err(e)).await;
                    break;
                }
            }
        }
    });

    // Main task.
    let cache_main = Arc::clone(&cache);
    let exitcode;
    loop {
        tokio::select! {
            _ = sigterm.recv() => {
                eprintln!("SIGTERM: Terminating.");
                exitcode = Ok(());
                break;
            }
            _ = sigint.recv() => {
                exitcode = Err(err!("Interrupted by SIGINT."));
                break;
            }
            _ = sighup.recv() => {
                eprintln!("SIGHUP: Reloading.");
                cache_main.clear().await;
            }
            code = main_exit_rx.recv() => {
                if let Some(code) = code {
                    exitcode = code;
                } else {
                    exitcode = Err(err!("Unknown error code."));
                }
                break;
            }
        }
    }
    exitcode
}

fn main() -> ah::Result<()> {
    let opts = Arc::new(Opts::parse());

    runtime::Builder::new_multi_thread()
        .thread_keep_alive(Duration::from_millis(1000))
        .worker_threads(opts.worker_threads.into())
        .enable_all()
        .build()
        .context("Tokio runtime builder")?
        .block_on(async_main(opts))
}

// vim: ts=4 sw=4 expandtab
bues.ch cgit interface