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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
|
/// Nostr Relay Builder Configuration
///
/// This module integrates nostr-relay-builder with NIP-34 validation logic
/// preserved from the original implementation.
use std::net::SocketAddr;
use std::path::{Path, PathBuf};
use std::sync::Arc;
use nostr::nips::nip19::ToBech32;
use nostr::prelude::{Alphabet, SingleLetterTag};
use nostr::{EventId, Filter, Kind, PublicKey};
use nostr_relay_builder::prelude::*;
use crate::config::{Config, DatabaseBackend};
use crate::nostr::events::{
validate_announcement, validate_state, RepositoryAnnouncement, KIND_REPOSITORY_ANNOUNCEMENT, KIND_REPOSITORY_STATE,
};
/// NIP-34 Write Policy with Full GRASP-01 Event Validation
///
/// Validates all events according to GRASP-01 specification:
/// - Repository announcements must list service in clone and relays tags
/// - Repository state announcements must have valid structure
/// - Other events must reference accepted repositories or events
/// - Forward references are supported (events referenced by accepted events)
/// - Orphan events with no valid references are rejected
///
/// Uses stateful database queries to check event relationships.
#[derive(Debug, Clone)]
pub struct Nip34WritePolicy {
domain: String,
database: Arc<MemoryDatabase>,
git_data_path: PathBuf,
}
impl Nip34WritePolicy {
pub fn new(domain: impl Into<String>, database: Arc<MemoryDatabase>, git_data_path: impl Into<PathBuf>) -> Self {
Self {
domain: domain.into(),
database,
git_data_path: git_data_path.into(),
}
}
/// Create a bare git repository if it doesn't exist
/// Path format: <git_data_path>/<npub>/<identifier>.git
fn ensure_bare_repository(&self, announcement: &RepositoryAnnouncement) -> Result<(), String> {
let repo_path = self.git_data_path.join(&announcement.repo_path());
// Check if repository already exists
if repo_path.exists() {
tracing::debug!("Repository already exists at {}", repo_path.display());
return Ok(());
}
// Create parent directory (npub directory)
let parent = repo_path.parent().ok_or_else(|| {
format!("Invalid repository path: {}", repo_path.display())
})?;
std::fs::create_dir_all(parent).map_err(|e| {
format!("Failed to create directory {}: {}", parent.display(), e)
})?;
// Initialize bare repository using git command
let output = std::process::Command::new("git")
.args(&["init", "--bare", repo_path.to_str().unwrap()])
.output()
.map_err(|e| format!("Failed to execute git init: {}", e))?;
if !output.status.success() {
let stderr = String::from_utf8_lossy(&output.stderr);
return Err(format!("git init failed: {}", stderr));
}
tracing::info!("Created bare repository at {}", repo_path.display());
Ok(())
}
/// Extract all reference tags from an event (a, A, q, e, E)
/// Returns (addressable_refs, event_refs)
fn extract_reference_tags(event: &Event) -> (Vec<String>, Vec<EventId>) {
let mut addressable_refs = Vec::new();
let mut event_refs = Vec::new();
for tag in event.tags.iter() {
let tag_vec = tag.clone().to_vec();
if tag_vec.is_empty() {
continue;
}
match tag_vec[0].as_str() {
// Addressable event references (a, A, q with kind:pubkey:identifier format)
"a" | "A" | "q" if tag_vec.len() > 1 && tag_vec[1].contains(':') => {
addressable_refs.push(tag_vec[1].clone());
}
// Event ID references (e, E, q with event ID format)
"e" | "E" if tag_vec.len() > 1 => {
if let Ok(event_id) = EventId::from_hex(&tag_vec[1]) {
event_refs.push(event_id);
}
}
"q" if tag_vec.len() > 1 && !tag_vec[1].contains(':') => {
if let Ok(event_id) = EventId::from_hex(&tag_vec[1]) {
event_refs.push(event_id);
}
}
_ => {}
}
}
(addressable_refs, event_refs)
}
/// Check if any addressable events (repositories) exist in database
/// Returns the first matching addressable reference found, or None if none match
async fn find_accepted_repository(
database: &Arc<MemoryDatabase>,
addressables: &[String],
) -> Result<Option<String>, String> {
if addressables.is_empty() {
return Ok(None);
}
// Parse all addressable references
let mut parsed_refs = Vec::new();
for addr in addressables {
let parts: Vec<&str> = addr.split(':').collect();
if parts.len() < 3 {
continue; // Skip invalid format
}
let kind = match parts[0].parse::<u16>() {
Ok(k) => k,
Err(_) => continue, // Skip invalid kind
};
let pubkey = match PublicKey::from_hex(parts[1]) {
Ok(pk) => pk,
Err(_) => continue, // Skip invalid pubkey
};
let identifier = parts[2].to_string();
parsed_refs.push((addr.clone(), kind, pubkey, identifier));
}
if parsed_refs.is_empty() {
return Ok(None);
}
// Group by kind to reduce queries
use std::collections::HashMap;
let mut by_kind: HashMap<u16, Vec<_>> = HashMap::new();
for (addr, kind, pubkey, identifier) in parsed_refs {
by_kind.entry(kind).or_default().push((addr, pubkey, identifier));
}
// Query each kind group
for (kind, refs) in by_kind {
let authors: Vec<PublicKey> = refs.iter().map(|(_, pk, _)| *pk).collect();
let filter = Filter::new()
.kind(Kind::from(kind))
.authors(authors);
match database.query(filter).await {
Ok(events) => {
// Check if any event matches our identifier requirements
for event in events {
for (addr, _pubkey, identifier) in &refs {
// Match identifier tag
if event.tags.iter().any(|tag| {
let tag_vec = tag.clone().to_vec();
tag_vec.len() >= 2 && tag_vec[0] == "d" && tag_vec[1] == *identifier
}) {
return Ok(Some(addr.clone()));
}
}
}
}
Err(e) => return Err(format!("Database query failed: {}", e)),
}
}
Ok(None)
}
/// Check if any events exist in database
/// Returns the first matching event ID found, or None if none match
async fn find_accepted_event(
database: &Arc<MemoryDatabase>,
event_ids: &[EventId],
) -> Result<Option<EventId>, String> {
if event_ids.is_empty() {
return Ok(None);
}
// Single query for all event IDs
let filter = Filter::new().ids(event_ids.iter().copied());
match database.query(filter).await {
Ok(events) => {
// Get first event from the iterator
Ok(events.into_iter().next().map(|e| e.id))
}
Err(e) => Err(format!("Database query failed: {}", e)),
}
}
/// Check if any accepted event references this event (forward reference)
///
/// For regular replaceable events (10000-19999): Checks addressable tags with kind:pubkey format
/// For parameterized replaceable (30000-39999): Checks addressable tags with kind:pubkey:d-identifier format
/// For regular events: Only checks event ID reference tags (e, E, q)
///
/// This optimization recognizes that replaceable events are referenced by coordinate address,
/// while regular events are referenced by event ID.
async fn is_referenced_by_accepted(
database: &Arc<MemoryDatabase>,
event: &Event,
) -> Result<bool, String> {
let kind_u16 = event.kind.as_u16();
// Check if this is any kind of replaceable event
let is_regular_replaceable = kind_u16 >= 10000 && kind_u16 < 20000;
let is_parameterized_replaceable = kind_u16 >= 30000 && kind_u16 < 40000;
if is_regular_replaceable || is_parameterized_replaceable {
// Build the appropriate address format based on event type
let address = if is_parameterized_replaceable {
// For parameterized replaceable: kind:pubkey:d-identifier format (2 colons)
let identifier = event.tags.iter()
.find_map(|tag| {
let tag_vec = tag.clone().to_vec();
if tag_vec.len() >= 2 && tag_vec[0] == "d" {
Some(tag_vec[1].clone())
} else {
None
}
})
.unwrap_or_default(); // Empty string if no 'd' tag
format!("{}:{}:{}", event.kind.as_u16(), event.pubkey.to_hex(), identifier)
} else {
// For regular replaceable: kind:pubkey format (1 colon)
format!("{}:{}", event.kind.as_u16(), event.pubkey.to_hex())
};
// Check addressable reference tags: a, A, q (with address format)
let addressable_tags = [
SingleLetterTag::lowercase(Alphabet::A), // 'a' - addressable event reference
SingleLetterTag::uppercase(Alphabet::A), // 'A' - uppercase addressable reference
SingleLetterTag::lowercase(Alphabet::Q), // 'q' - quote (can be address or ID)
];
for tag_type in &addressable_tags {
let filter = Filter::new().custom_tag(tag_type.clone(), address.clone());
match database.query(filter).await {
Ok(events) => {
if !events.is_empty() {
return Ok(true);
}
}
Err(e) => return Err(format!("Database query failed: {}", e)),
}
}
} else {
// For regular events, check event ID reference tags: e, E, q (with hex ID)
let event_id_hex = event.id.to_hex();
let event_id_tags = [
SingleLetterTag::lowercase(Alphabet::E), // 'e' - standard event reference
SingleLetterTag::uppercase(Alphabet::E), // 'E' - NIP-22 root event reference
SingleLetterTag::lowercase(Alphabet::Q), // 'q' - quote reference
];
for tag_type in &event_id_tags {
let filter = Filter::new().custom_tag(tag_type.clone(), event_id_hex.clone());
match database.query(filter).await {
Ok(events) => {
if !events.is_empty() {
return Ok(true);
}
}
Err(e) => return Err(format!("Database query failed: {}", e)),
}
}
}
Ok(false)
}
}
impl WritePolicy for Nip34WritePolicy {
fn admit_event<'a>(
&'a self,
event: &'a nostr_relay_builder::prelude::Event,
_addr: &'a SocketAddr,
) -> BoxedFuture<'a, PolicyResult> {
let database = self.database.clone();
let domain = self.domain.clone();
Box::pin(async move {
let event_id_str = event.id.to_bech32().unwrap_or_else(|_| event.id.to_hex());
match event.kind.as_u16() {
KIND_REPOSITORY_ANNOUNCEMENT => match validate_announcement(event, &domain) {
Ok(_) => {
// Parse announcement to get repository details
match RepositoryAnnouncement::from_event(event.clone()) {
Ok(announcement) => {
// Try to create bare repository if it doesn't exist
if let Err(e) = self.ensure_bare_repository(&announcement) {
tracing::warn!(
"Failed to create bare repository for {}: {}",
event_id_str,
e
);
// Note: We still accept the event even if repo creation fails
// The git operation failure shouldn't prevent event acceptance
}
tracing::debug!(
"Accepted repository announcement: {}",
event_id_str
);
PolicyResult::Accept
}
Err(e) => {
tracing::warn!(
"Failed to parse repository announcement {}: {}",
event_id_str,
e
);
PolicyResult::Reject(format!("Failed to parse announcement: {}", e))
}
}
}
Err(e) => {
tracing::warn!(
"Rejected repository announcement {}: {}",
event_id_str,
e
);
PolicyResult::Reject(e.to_string())
}
},
KIND_REPOSITORY_STATE =>match validate_state(event) {
Ok(_) => {
tracing::debug!(
"Accepted repository state: {}",
event_id_str
);
PolicyResult::Accept
}
Err(e) => {
tracing::warn!(
"Rejected repository state {}: {}",
event_id_str,
e
);
PolicyResult::Reject(e.to_string())
}
},
// GRASP-01: Check if event references accepted repositories or events
_ => {
// Extract all reference tags from event
let (addressable_refs, event_refs) = Self::extract_reference_tags(event);
// Check 1: Does this event reference an accepted repository? (batched)
match Self::find_accepted_repository(&database, &addressable_refs).await {
Ok(Some(addr_ref)) => {
tracing::debug!(
"Accepted event {}: references accepted repository {}",
event_id_str,
addr_ref
);
return PolicyResult::Accept;
}
Ok(None) => {
// No matching repositories, continue to next check
}
Err(e) => {
tracing::warn!(
"Database query failed for event {}, rejecting (fail-secure): {}",
event_id_str,
e
);
return PolicyResult::Reject(format!("Database query failed: {}", e));
}
}
// Check 2: Does this event reference an accepted event? (batched, transitive)
match Self::find_accepted_event(&database, &event_refs).await {
Ok(Some(event_ref)) => {
tracing::debug!(
"Accepted event {}: references accepted event {}",
event_id_str,
event_ref
);
return PolicyResult::Accept;
}
Ok(None) => {
// No matching events, continue to next check
}
Err(e) => {
tracing::warn!(
"Database query failed for event {}, rejecting (fail-secure): {}",
event_id_str,
e
);
return PolicyResult::Reject(format!("Database query failed: {}", e));
}
}
// Check 3: Is this event referenced by an accepted event? (forward reference)
match Self::is_referenced_by_accepted(&database, event).await {
Ok(true) => {
tracing::debug!(
"Accepted event {}: referenced by accepted event",
event_id_str
);
return PolicyResult::Accept;
}
Ok(false) => {
// No forward references found, continue to rejection
}
Err(e) => {
tracing::warn!(
"Database query failed for event {}, rejecting (fail-secure): {}",
event_id_str,
e
);
return PolicyResult::Reject(format!("Database query failed: {}", e));
}
}
// No valid references found - reject as orphan event
tracing::info!(
"Rejected orphan event {}: no references to accepted repos or events (checked {} addressable, {} event refs)",
event_id_str,
addressable_refs.len(),
event_refs.len()
);
PolicyResult::Reject(
"Event must reference an accepted repository or accepted event".to_string()
)
}
}
})
}
}
/// Create a configured LocalRelay with full GRASP-01 validation
pub fn create_relay(config: &Config) -> Result<LocalRelay> {
tracing::info!("Configuring nostr relay with GRASP-01 validation...");
// Determine database path
let db_path = Path::new(&config.relay_data_path);
// Create database based on configuration
let database = match config.database_backend {
DatabaseBackend::Memory => {
tracing::info!("Using in-memory database (no persistence)");
Arc::new(MemoryDatabase::with_opts(MemoryDatabaseOptions {
events: true,
max_events: Some(100_000),
}))
}
DatabaseBackend::NostrDb => {
tracing::info!("Using NostrDB backend at: {}", db_path.display());
// TODO: Implement NostrDB backend once nostr-relay-builder supports it
// For now, fall back to memory database
tracing::warn!("NostrDB backend not yet implemented, using in-memory database");
Arc::new(MemoryDatabase::with_opts(MemoryDatabaseOptions {
events: true,
max_events: Some(100_000),
}))
}
DatabaseBackend::Lmdb => {
tracing::info!("Using LMDB backend at: {}", db_path.display());
// TODO: Implement LMDB backend once nostr-relay-builder supports it
// For now, fall back to memory database
tracing::warn!("LMDB backend not yet implemented, using in-memory database");
Arc::new(MemoryDatabase::with_opts(MemoryDatabaseOptions {
events: true,
max_events: Some(100_000),
}))
}
};
// Build relay with GRASP-01 validation
// Clone Arc for the write policy so both relay and policy can access the database
let builder = RelayBuilder::default()
.database(database.clone())
.write_policy(Nip34WritePolicy::new(
&config.domain,
database.clone(),
&config.git_data_path,
));
tracing::info!(
"Relay configured with GRASP-01 validation for domain: {}",
config.domain
);
Ok(LocalRelay::new(builder))
}
|