aim_handler.go 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  1. package webapi
  2. import (
  3. "context"
  4. "encoding/base64"
  5. "encoding/xml"
  6. "errors"
  7. "fmt"
  8. "log/slog"
  9. "net"
  10. "net/http"
  11. "slices"
  12. "strconv"
  13. "strings"
  14. "time"
  15. "github.com/google/uuid"
  16. "github.com/mk6i/open-oscar-server/config"
  17. "github.com/mk6i/open-oscar-server/state"
  18. "github.com/mk6i/open-oscar-server/wire"
  19. )
  20. // AimHandler serves the /aim/* Web AIM API endpoints.
  21. type AimHandler struct {
  22. SessionManager *SessionManager
  23. AuthService AuthService
  24. FeedbagService FeedbagService
  25. ICBMService ICBMService
  26. LocateService LocateService
  27. OServiceService OServiceService
  28. BuddyListManager *BuddyListManager
  29. BuddyService BuddyService
  30. IconSource BuddyIconSource
  31. // BOSListener is the listener group startOSCARSession advertises a BOS
  32. // address from.
  33. BOSListener config.ListenerGroup
  34. // SNACRateLimits is the same SNAC-to-rate-class mapping RateLimitMiddleware
  35. // enforces against, so the class a session alerts on cannot drift from the
  36. // one it is charged.
  37. SNACRateLimits wire.SNACRateLimits
  38. Logger *slog.Logger
  39. FnSessCfg func(sess *state.Session)
  40. FnSessInit func(instance *state.SessionInstance) func() error
  41. FnInstanceClose func(instance *state.SessionInstance) func()
  42. }
  43. // MyInfo is the user's own identity blob, which the Web AIM client renders in
  44. // its identity badge. It is both the startSession payload's myInfo and the
  45. // myInfo event's data.
  46. type MyInfo struct {
  47. AimID string `json:"aimId" xml:"aimId"`
  48. DisplayID string `json:"displayId" xml:"displayId"`
  49. Friendly string `json:"friendly" xml:"friendly"`
  50. State string `json:"state" xml:"state"`
  51. UserType string `json:"userType" xml:"userType"` // "aim", "icq"
  52. Bot bool `json:"bot" xml:"bot"`
  53. Service string `json:"service,omitempty" xml:"service,omitempty"` // Non-native network; omitted for AIM
  54. // Capabilities is always sent, empty included, because the client iterates it
  55. // unconditionally.
  56. Capabilities []string `json:"capabilities" xml:"capabilities>capability"`
  57. // BuddyIcon is omitted when empty so the client's merge preserves the icon it
  58. // already holds.
  59. BuddyIcon string `json:"buddyIcon,omitempty" xml:"buddyIcon,omitempty"`
  60. MoodIcon string `json:"moodIcon,omitempty" xml:"moodIcon,omitempty"`
  61. MoodTitle string `json:"moodTitle,omitempty" xml:"moodTitle,omitempty"`
  62. AwayMsg string `json:"awayMsg,omitempty" xml:"awayMsg,omitempty"`
  63. StatusMsg string `json:"statusMsg,omitempty" xml:"statusMsg,omitempty"`
  64. OnlineTime int64 `json:"onlineTime,omitempty" xml:"onlineTime,omitempty"`
  65. MemberSince int64 `json:"memberSince,omitempty" xml:"memberSince,omitempty"`
  66. Self *MyInfoSelf `json:"self,omitempty" xml:"self,omitempty"`
  67. }
  68. // MyInfoSelf carries the session-scoped half of myInfo: the instance the client
  69. // is talking to and the limits it must respect.
  70. type MyInfoSelf struct {
  71. InstNum int `json:"instNum" xml:"instNum"`
  72. LoginTime int64 `json:"loginTime" xml:"loginTime"`
  73. SessionTimeout int `json:"sessionTimeout" xml:"sessionTimeout"`
  74. Events []string `json:"events" xml:"events>event"`
  75. AssertCaps []string `json:"assertCaps" xml:"assertCaps>capability"`
  76. RightsInfo RightsInfo `json:"rightsInfo" xml:"rightsInfo"`
  77. }
  78. // RightsInfo reports the account limits the client enforces client-side.
  79. type RightsInfo struct {
  80. MaxDenies int `json:"maxDenies" xml:"maxDenies"`
  81. MaxPermits int `json:"maxPermits" xml:"maxPermits"`
  82. MaxWatchers int `json:"maxWatchers" xml:"maxWatchers"`
  83. MaxBuddies int `json:"maxBuddies" xml:"maxBuddies"`
  84. MaxTempBuddies int `json:"maxTempBuddies" xml:"maxTempBuddies"`
  85. MaxIMSize int `json:"maxIMSize" xml:"maxIMSize"`
  86. MinInterIcbmInterval int `json:"minInterIcbmInterval" xml:"minInterIcbmInterval"`
  87. MaxSourceEvil int `json:"maxSourceEvil" xml:"maxSourceEvil"`
  88. MaxDstEvil int `json:"maxDstEvil" xml:"maxDstEvil"`
  89. MaxSigLen int `json:"maxSigLen" xml:"maxSigLen"`
  90. }
  91. // WellKnownUrls advertises the API roots to clients that discover them rather
  92. // than deriving them.
  93. type WellKnownUrls struct {
  94. WebApiBase string `json:"webApiBase" xml:"webApiBase"`
  95. FetchBaseURL string `json:"fetchBaseURL" xml:"fetchBaseURL"`
  96. LifestreamApiBase string `json:"lifestreamApiBase" xml:"lifestreamApiBase"`
  97. }
  98. // StartSessionEvents seeds the client with the first value of each event it
  99. // subscribed to, so it renders a populated UI before its first fetchEvents.
  100. // Each field is absent unless the client asked for that event.
  101. type StartSessionEvents struct {
  102. MyInfo *MyInfo `json:"myInfo,omitempty" xml:"myInfo,omitempty"`
  103. BuddyList *BuddyListData `json:"buddylist,omitempty" xml:"buddylist,omitempty"`
  104. Preference *PreferenceData `json:"preference,omitempty" xml:"preference,omitempty"`
  105. PermitDeny any `json:"permitDeny,omitempty" xml:"permitDeny,omitempty"`
  106. Service *ServiceData `json:"service,omitempty" xml:"service,omitempty"`
  107. }
  108. // BuddyListData is the buddylist event payload and the buddy list half of the
  109. // startSession seed.
  110. type BuddyListData struct {
  111. Groups []BuddyGroup `json:"groups" xml:"groups>group"`
  112. }
  113. // StartSessionData is the startSession payload.
  114. type StartSessionData struct {
  115. AimSID string `json:"aimsid" xml:"aimsid"`
  116. Ts int64 `json:"ts" xml:"ts"`
  117. FetchTimeout int `json:"fetchTimeout" xml:"fetchTimeout"`
  118. TimeToNextFetch int `json:"timeToNextFetch" xml:"timeToNextFetch"`
  119. // FetchBaseURL sits directly in data, not in wellKnownUrls: it is where the
  120. // client reads its poll URL from.
  121. FetchBaseURL string `json:"fetchBaseURL" xml:"fetchBaseURL"`
  122. MyInfo *MyInfo `json:"myInfo,omitempty" xml:"myInfo,omitempty"`
  123. Events *StartSessionEvents `json:"events,omitempty" xml:"events,omitempty"`
  124. WellKnownUrls *WellKnownUrls `json:"wellKnownUrls,omitempty" xml:"wellKnownUrls,omitempty"`
  125. }
  126. // StartSession handles GET|POST /aim/startSession requests.
  127. func (h *AimHandler) StartSession(w http.ResponseWriter, r *http.Request) {
  128. ctx := r.Context()
  129. authToken := param(r, "a")
  130. // Get client info
  131. clientName := param(r, "clientName")
  132. if clientName == "" {
  133. clientName = "WebAIM"
  134. }
  135. clientVersion := param(r, "clientVersion")
  136. if clientVersion == "" {
  137. clientVersion = "1.0"
  138. }
  139. // Get events to subscribe to
  140. eventsParam := param(r, "events")
  141. var events []string
  142. if eventsParam != "" {
  143. events = strings.Split(eventsParam, ",")
  144. h.Logger.DebugContext(ctx, "parsing events from request",
  145. "eventsParam", eventsParam,
  146. "parsedEvents", events,
  147. )
  148. } else {
  149. // Default events if none specified
  150. events = []string{"buddylist", "presence", "im", "sentIM"}
  151. h.Logger.DebugContext(ctx, "using default events",
  152. "events", events,
  153. )
  154. }
  155. // Get timeout settings
  156. timeout := 60000 // Default 60 seconds for better stability with Gromit
  157. if t := param(r, "timeout"); t != "" {
  158. if val, err := strconv.Atoi(t); err == nil && val > 0 {
  159. timeout = val * 1000 // Convert to milliseconds
  160. }
  161. }
  162. // A Web API session must be bridged to an authenticated OSCAR session;
  163. // anonymous guests are not supported.
  164. if authToken == "" {
  165. SendEnvelopeStatus(w, r, http.StatusUnauthorized, "authentication token required", h.Logger)
  166. return
  167. }
  168. rawCookie, err := base64.URLEncoding.DecodeString(strings.TrimSpace(authToken))
  169. if err != nil {
  170. h.Logger.Warn("invalid authentication token (base64)", "error", err)
  171. SendEnvelopeStatus(w, r, http.StatusUnauthorized, "invalid or expired token", h.Logger)
  172. return
  173. }
  174. cookie, _, err := h.AuthService.CrackCookie(rawCookie)
  175. if err != nil {
  176. h.Logger.Warn("invalid authentication token", "error", err)
  177. SendEnvelopeStatus(w, r, http.StatusUnauthorized, "invalid or expired token", h.Logger)
  178. return
  179. }
  180. screenName := cookie.ScreenName
  181. tokenPreview := authToken
  182. if len(tokenPreview) > 8 {
  183. tokenPreview = tokenPreview[:8] + "..."
  184. }
  185. h.Logger.Info("authenticated session requested",
  186. "token", tokenPreview,
  187. "screenName", screenName)
  188. var instance *state.SessionInstance
  189. // Create OSCAR session
  190. instance, err = h.AuthService.RegisterBOSSession(ctx, cookie, h.FnSessCfg)
  191. if err != nil {
  192. h.Logger.ErrorContext(ctx, "failed to create OSCAR session", "err", err.Error())
  193. SendEnvelopeStatus(w, r, http.StatusServiceUnavailable, "unable to establish session", h.Logger)
  194. return
  195. }
  196. if err = instance.Session().RunOnce(h.FnSessInit(instance)); err != nil {
  197. h.Logger.ErrorContext(context.Background(), "failed to init session", "err", err.Error())
  198. // RunOnce has already closed the whole session; this is belt-and-braces,
  199. // since CloseInstance is idempotent and nothing else owns the instance yet.
  200. instance.CloseInstance()
  201. SendEnvelopeStatus(w, r, http.StatusInternalServerError, "internal server error", h.Logger)
  202. return
  203. }
  204. instance.OnClose(h.FnInstanceClose(instance))
  205. if err := h.FeedbagService.Use(ctx, instance); err != nil {
  206. h.Logger.ErrorContext(ctx, "failed to use feedbag", "err", err.Error())
  207. }
  208. // A web client signals that it wants typing events through its event
  209. // subscription, not through a stored feedbag buddy pref. Reflect that
  210. // on the OSCAR session so ICBMService attaches the WantEvents TLV to
  211. // outgoing IMs, prompting recipients to send typing notifications
  212. // back. This must run after FeedbagService.Use, which otherwise
  213. // overwrites the flag from stored prefs the web user may not have set.
  214. instance.Session().SetTypingEventsEnabled(slices.Contains(events, "typing"))
  215. instance.SetSignonComplete()
  216. setInfo := wire.SNAC_0x02_0x04_LocateSetInfo{
  217. TLVRestBlock: wire.TLVRestBlock{
  218. TLVList: wire.TLVList{
  219. wire.NewTLVBE(wire.LocateTLVTagsInfoCapabilities, []uuid.UUID{
  220. wire.CapICQCh2Extended,
  221. }),
  222. },
  223. },
  224. }
  225. if err := h.LocateService.SetInfo(ctx, instance, setInfo); err != nil {
  226. h.Logger.ErrorContext(ctx, "failed to set capabilities", "err", err.Error())
  227. instance.CloseInstance()
  228. SendEnvelopeStatus(w, r, http.StatusInternalServerError, "internal server error", h.Logger)
  229. return
  230. }
  231. if err := h.OServiceService.ClientOnline(ctx, wire.BOS, wire.SNAC_0x01_0x02_OServiceClientOnline{}, instance); err != nil {
  232. h.Logger.ErrorContext(ctx, "failed to set client online", "err", err.Error())
  233. instance.CloseInstance()
  234. SendEnvelopeStatus(w, r, http.StatusInternalServerError, "internal server error", h.Logger)
  235. return
  236. }
  237. // The rate class sending an IM spends. Only its updates surface to the client's
  238. // conversation-window alert, which renders any rateLimit event as the IM
  239. // banner. A miss yields zero, which disables the alert rather than indexing a
  240. // rate class that isn't there.
  241. imRateClassID, ok := h.SNACRateLimits.RateClassLookup(wire.ICBM, wire.ICBMChannelMsgToHost)
  242. if !ok {
  243. h.Logger.ErrorContext(ctx, "no rate class maps to sending an IM, rate limit events are disabled")
  244. }
  245. // Subscribe the same way an OSCAR client does at handshake, so the per-account
  246. // monitor broadcasts this class's transitions to this session.
  247. if imRateClassID != 0 {
  248. h.OServiceService.RateParamsSubAdd(ctx, instance, wire.SNAC_0x01_0x08_OServiceRateParamsSubAdd{
  249. ClassIDs: []uint16{uint16(imRateClassID)},
  250. })
  251. }
  252. // Create WebAPI session
  253. // Record the origin the client reached us on. Asset URLs published to the
  254. // client (buddy icons) must be absolute, since the client page is served from
  255. // a different origin than this API, and they are built in places that have no
  256. // request in hand. Pinning the origin here also keeps those URLs on the same
  257. // host as the wellKnownUrls advertised below. It is passed into CreateSession
  258. // so it is set before the session is published and its listener goroutine can
  259. // read it.
  260. baseURL := baseURLFromRequest(r)
  261. session, err := h.SessionManager.CreateSession(screenName, events, instance, baseURL, h.Logger)
  262. if err != nil {
  263. h.Logger.ErrorContext(ctx, "failed to create session", "err", err.Error())
  264. // CreateSession refuses once the manager is shut down, so this is the
  265. // path a startSession racing shutdown takes. The WebAPISession that
  266. // would have owned the instance was never created.
  267. instance.CloseInstance()
  268. SendEnvelopeStatus(w, r, http.StatusInternalServerError, "failed to create session", h.Logger)
  269. return
  270. }
  271. h.Logger.DebugContext(ctx, "session created with event subscriptions",
  272. "aimsid", session.AimSID,
  273. "events", events,
  274. )
  275. // Wire buddy list refresher so feedbag SNACs from the OSCAR bridge trigger a buddylist event.
  276. // The refresher yields the whole buddylist event payload, not just the groups,
  277. // so the session that pushes it does not have to know the payload's shape.
  278. session.BuddyListRefresher = func(ctx context.Context) (any, error) {
  279. groups, err := h.BuddyListManager.GetBuddyListForUser(ctx, session)
  280. if err != nil {
  281. return nil, err
  282. }
  283. return &BuddyListData{Groups: groups}, nil
  284. }
  285. // Wire the alias loader so OSCAR-driven im/presence events can repeat the
  286. // buddy's friendly name. The client discards the alias it holds each time it
  287. // merges a user map, so an event that omits it renames the buddy. The session
  288. // caches what this returns until a feedbag change invalidates it.
  289. session.BuddyAliasLoader = func(ctx context.Context) (map[string]string, error) {
  290. return LookupBuddyAliases(ctx, h.FeedbagService, session.OSCARSession)
  291. }
  292. // Wire the buddy-icon URL formatter so presence broadcasts (BuddyArrived) can
  293. // publish a buddy's current icon from the hash carried in the SNAC, no lookup.
  294. session.BuddyIconURL = func(sn state.IdentScreenName, hash []byte) string {
  295. return h.IconSource.URLForHash(session.BaseURL, sn, hash)
  296. }
  297. // Wire the myInfo refresher so a self user-info update (icon upload/clear)
  298. // re-renders the identity badge. currentWebState reflects the user's live
  299. // presence; PublishedURL reflects the feedbag icon, already updated by the time
  300. // the OServiceUserInfoUpdate is relayed.
  301. session.MyInfoRefresher = func(ctx context.Context) (any, error) {
  302. icon := h.IconSource.PublishedURL(ctx, session.BaseURL, screenName.IdentScreenName())
  303. webState := currentWebState(session.OSCARSession)
  304. mood := moodIconURL(session.BaseURL, webState, session.OSCARSession.Session().Caps())
  305. return buildMyInfo(screenName, webState, icon, mood), nil
  306. }
  307. // Wire permit/deny refresher so FeedbagUpdateItem SNACs trigger a permitDeny event.
  308. session.PermitDenyRefresher = func(ctx context.Context) (any, error) {
  309. frame := wire.SNACFrame{FoodGroup: wire.Feedbag, SubGroup: wire.FeedbagQuery}
  310. fb, err := h.FeedbagService.Query(ctx, session.OSCARSession, frame)
  311. if err != nil {
  312. return nil, err
  313. }
  314. reply, ok := fb.Body.(wire.SNAC_0x13_0x06_FeedbagReply)
  315. if !ok {
  316. return nil, fmt.Errorf("unexpected feedbag reply type")
  317. }
  318. return permitDenyData(reply.Items), nil
  319. }
  320. // Only IM-class rate limit updates should surface to the client alert.
  321. session.IMRateClassID = imRateClassID
  322. seedRateLimitAlert(session, imRateClassID)
  323. // Now that every refresher callback is wired, start the OSCAR listener. Doing
  324. // this inside CreateSession would race these assignments, since the goroutine
  325. // reads the callbacks as it converts SNACs into events.
  326. session.StartListeningToOSCARSession()
  327. // Store client info
  328. session.ClientName = clientName
  329. session.ClientVersion = clientVersion
  330. session.FetchTimeout = timeout
  331. session.RemoteAddr = r.RemoteAddr
  332. // The identity badge renders the user's own icon from myInfo, which is the
  333. // only event it binds its self-presence render to. PublishedURL always yields
  334. // a URL (the blank placeholder when the user has no icon) so that clearing the
  335. // icon propagates to the badge.
  336. myIconURL := h.IconSource.PublishedURL(ctx, baseURL, screenName.IdentScreenName())
  337. now := time.Now().Unix()
  338. // Prepare response
  339. data := &StartSessionData{
  340. AimSID: session.AimSID,
  341. Ts: now,
  342. FetchTimeout: session.FetchTimeout,
  343. TimeToNextFetch: session.TimeToNextFetch,
  344. // Gromit expects fetchBaseURL directly in data, not in wellKnownUrls
  345. FetchBaseURL: fmt.Sprintf("%s/aim/fetchEvents?aimsid=%s&seqNum=0", baseURL, session.AimSID),
  346. // Add wellKnownUrls for other clients that might use it.
  347. WellKnownUrls: &WellKnownUrls{
  348. WebApiBase: baseURL + "/",
  349. FetchBaseURL: baseURL + "/aim/fetchEvents",
  350. // The client appends the bare method name to this base, so it has to
  351. // carry the /lifestream/ path the routes are registered under.
  352. LifestreamApiBase: baseURL + "/lifestream/",
  353. },
  354. Events: &StartSessionEvents{},
  355. }
  356. myMoodURL := moodIconURL(baseURL, "online", session.OSCARSession.Session().Caps())
  357. myInfoPayload := buildMyInfo(screenName, "online", myIconURL, myMoodURL)
  358. myInfoPayload.OnlineTime = time.Now().Unix()
  359. myInfoPayload.MemberSince = time.Now().Unix() - 86400*30 // 30 days ago
  360. myInfoPayload.Self = &MyInfoSelf{
  361. InstNum: 1,
  362. LoginTime: time.Now().Unix(),
  363. SessionTimeout: 30,
  364. Events: events,
  365. AssertCaps: []string{},
  366. RightsInfo: RightsInfo{
  367. MaxDenies: 500,
  368. MaxPermits: 500,
  369. MaxWatchers: 3000,
  370. MaxBuddies: 500,
  371. MaxTempBuddies: maxTempBuddies,
  372. MaxIMSize: 3987,
  373. MinInterIcbmInterval: 1000,
  374. MaxSourceEvil: 900,
  375. MaxDstEvil: 999,
  376. MaxSigLen: 4096,
  377. },
  378. }
  379. data.MyInfo = myInfoPayload
  380. data.Events.MyInfo = myInfoPayload
  381. // Seeds that only queue an event are keyed off the subscription rather than
  382. // iterated with it, so the server fixes their order and each is queued once.
  383. // myInfo and presence render the identity badge from the same payload and the
  384. // client subscribes to both, which a per-subscription loop would queue twice.
  385. if slices.Contains(events, "myInfo") || slices.Contains(events, "presence") {
  386. myInfoData := buildMyInfo(screenName, "online", myIconURL, myMoodURL)
  387. myInfoData.OnlineTime = time.Now().Unix()
  388. myInfoData.MemberSince = time.Now().Unix() - 86400*30 // 30 days ago
  389. session.EventQueue.Push(EventTypeMyInfo, myInfoData)
  390. }
  391. if slices.Contains(events, "conversation") {
  392. session.EventQueue.Push(EventTypeConversation,
  393. ConversationEventData("list", nil))
  394. }
  395. if slices.Contains(events, string(EventTypeService)) {
  396. svcPayload := newServiceData()
  397. data.Events.Service = svcPayload
  398. session.EventQueue.Push(EventTypeService, svcPayload)
  399. }
  400. // The remaining seeds also populate the response payload, so they stay keyed off
  401. // the subscription list they are rendered into.
  402. for _, event := range events {
  403. switch EventType(event) {
  404. case EventTypeBuddyList:
  405. buddyGroups, err := h.BuddyListManager.GetBuddyListForUser(ctx, session)
  406. if err != nil {
  407. h.Logger.ErrorContext(ctx, "failed to get buddy list", "err", err.Error())
  408. }
  409. if buddyGroups == nil {
  410. buddyGroups = []BuddyGroup{}
  411. }
  412. blPayload := &BuddyListData{Groups: buddyGroups}
  413. data.Events.BuddyList = blPayload
  414. session.EventQueue.Push(EventTypeBuddyList, blPayload)
  415. case EventTypePreference:
  416. // Seed the client with effective preference values: the user's stored
  417. // prefs where set, and the server-side spec defaults otherwise. The
  418. // client reads its buddy-list display prefs (e.g. showGroups) only from
  419. // this event and has no default of its own for them, so an omitted pref
  420. // would silently fall back to the client's hidden default and, for
  421. // showGroups, hide group headers.
  422. prefPayload := &PreferenceData{}
  423. if item, err := buddyPrefsItem(ctx, h.FeedbagService, session.OSCARSession); err != nil {
  424. h.Logger.ErrorContext(ctx, "failed to get preferences", "err", err.Error())
  425. } else {
  426. prefPayload = effectiveBuddyPrefs(item.TLVList)
  427. }
  428. data.Events.Preference = prefPayload
  429. session.EventQueue.Push(EventTypePreference, prefPayload)
  430. case EventTypePermitDeny:
  431. // The client keeps its privacy state solely in the model this event
  432. // populates. Both the block/unblock menu action and the "blocked"
  433. // presence state read that model and no-op silently while it is
  434. // empty, so the session has to start with one.
  435. var pdPayload any = PermitDenyData{PDMode: "permitAll"}
  436. if pdd, err := session.PermitDenyRefresher(ctx); err != nil {
  437. h.Logger.ErrorContext(ctx, "failed to get permit/deny settings", "err", err.Error())
  438. } else {
  439. pdPayload = pdd
  440. }
  441. data.Events.PermitDeny = pdPayload
  442. session.EventQueue.Push(EventTypePermitDeny, pdPayload)
  443. }
  444. }
  445. // Drain messages stored while the user was signed off. The service relays them
  446. // as ordinary ICBMChannelMsgToClient SNACs stamped with a send time, which the
  447. // listener started above turns into offlineIM events. Retrieval deletes them
  448. // from the store and the Web API has no ack, so this is the one delivery attempt.
  449. // Skip it for a client that did not subscribe, which leaves the messages stored
  450. // for a session that wants them rather than spending them on one that does not.
  451. //
  452. // This trails every event queued above because the listener pushes from its own
  453. // goroutine, so anything drained here can overtake a later push. An offlineIM
  454. // names its sender by bare aimId and leaves the client to resolve the display
  455. // name against the buddy list it holds, and the conversation list is rebuilt from
  456. // scratch on the first "list" the client sees. Both of those events are queued in
  457. // the loop above, so the drain has to come after it.
  458. if slices.Contains(events, "offlineIM") {
  459. frame := wire.SNACFrame{
  460. FoodGroup: wire.ICBM,
  461. SubGroup: wire.ICBMOfflineRetrieve,
  462. RequestID: wire.ReqIDFromServer,
  463. }
  464. if _, err := h.ICBMService.OfflineRetrieve(ctx, instance, frame); err != nil {
  465. h.Logger.ErrorContext(ctx, "failed to retrieve offline messages", "err", err.Error())
  466. }
  467. }
  468. // Send response in requested format (JSON, JSONP, XML, or AMF)
  469. SendOK(w, r, data, h.Logger)
  470. h.Logger.DebugContext(ctx, "session started",
  471. "aimsid", session.AimSID,
  472. "screen_name", screenName,
  473. "events", events,
  474. "format", r.URL.Query().Get("f"),
  475. )
  476. }
  477. // EndSession handles GET /aim/endSession requests.
  478. func (h *AimHandler) EndSession(w http.ResponseWriter, r *http.Request, session *Session) {
  479. ctx := r.Context()
  480. // RemoveSession evicts the session from the manager and tears it down
  481. // (closes the event queue and the OSCAR instance). Without this the aimsid
  482. // stays resolvable until the reaper sweeps it, and RequireSession would keep
  483. // handing handlers a session whose OSCAR instance is already closed.
  484. if err := h.SessionManager.RemoveSession(ctx, session.AimSID); err != nil {
  485. h.Logger.ErrorContext(ctx, "failed to remove session", "err", err.Error())
  486. }
  487. // Send response
  488. // Send response in requested format (JSON, JSONP, or AMF)
  489. SendOK(w, r, nil, h.Logger)
  490. h.Logger.DebugContext(ctx, "session ended",
  491. "aimsid", session.AimSID,
  492. "screen_name", session.ScreenName,
  493. )
  494. }
  495. // FetchEventsData contains the events and metadata.
  496. type FetchEventsData struct {
  497. Events []Event `json:"events" xml:"events>event"`
  498. LastSeqNum uint64 `json:"lastSeqNum" xml:"lastSeqNum"`
  499. TimeToNextFetch int `json:"timeToNextFetch" xml:"timeToNextFetch"`
  500. FetchBaseURL string `json:"fetchBaseURL" xml:"fetchBaseURL"`
  501. }
  502. // FetchEvents handles GET /aim/fetchEvents requests with long-polling support.
  503. func (h *AimHandler) FetchEvents(w http.ResponseWriter, r *http.Request, session *Session) {
  504. ctx := r.Context()
  505. aimsid := session.AimSID
  506. // Get sequence number parameter
  507. var lastSeqNum uint64
  508. if seqStr := r.URL.Query().Get("seqNum"); seqStr != "" {
  509. if val, err := strconv.ParseUint(seqStr, 10, 64); err == nil {
  510. lastSeqNum = val
  511. }
  512. }
  513. // Timeout is in milliseconds (per Web API spec and client behavior).
  514. timeout := time.Duration(session.FetchTimeout) * time.Millisecond
  515. if timeoutStr := r.URL.Query().Get("timeout"); timeoutStr != "" {
  516. if val, err := strconv.Atoi(timeoutStr); err == nil && val > 0 {
  517. timeout = time.Duration(val) * time.Millisecond
  518. }
  519. }
  520. // Limit maximum timeout to 60 seconds
  521. if timeout > 60*time.Second {
  522. timeout = 60 * time.Second
  523. }
  524. // Create a context with timeout for the fetch operation
  525. fetchCtx, cancel := context.WithTimeout(ctx, timeout)
  526. defer cancel()
  527. // Fetch events from the queue (will block until events available or timeout)
  528. events, err := session.EventQueue.Fetch(fetchCtx, lastSeqNum, timeout)
  529. if err != nil {
  530. if errors.Is(err, context.DeadlineExceeded) {
  531. // timeout is normal - return empty events array
  532. events = []Event{}
  533. } else {
  534. h.Logger.ErrorContext(ctx, "failed to fetch events", "err", err.Error())
  535. SendError(w, r, http.StatusInternalServerError, "failed to fetch events")
  536. return
  537. }
  538. }
  539. // Determine the last sequence number
  540. newLastSeqNum := lastSeqNum
  541. if len(events) > 0 {
  542. newLastSeqNum = events[len(events)-1].SeqNum
  543. }
  544. // A nil slice renders as JSON null, which a client reading data.events
  545. // strictly rejects.
  546. if events == nil {
  547. events = []Event{}
  548. }
  549. // Prepare response
  550. data := &FetchEventsData{
  551. Events: events,
  552. LastSeqNum: newLastSeqNum,
  553. TimeToNextFetch: session.TimeToNextFetch,
  554. // Include fetchBaseURL with updated sequence number for next request
  555. FetchBaseURL: fmt.Sprintf("%s/aim/fetchEvents?aimsid=%s&seqNum=%d",
  556. baseURLFromRequest(r), aimsid, newLastSeqNum),
  557. }
  558. SendOK(w, r, data, h.Logger)
  559. if len(events) > 0 {
  560. h.Logger.DebugContext(ctx, "events fetched",
  561. "aimsid", aimsid,
  562. "count", len(events),
  563. "last_seq", newLastSeqNum,
  564. )
  565. }
  566. }
  567. // maxTempBuddies caps how many screen names one addTempBuddy or removeTempBuddy
  568. // call may carry.
  569. const maxTempBuddies = 160
  570. // AddTempBuddy handles GET /aim/addTempBuddy requests.
  571. // Temporary buddies live for the duration of the OSCAR session; they are not
  572. // persisted to the feedbag.
  573. func (h *AimHandler) AddTempBuddy(w http.ResponseWriter, r *http.Request, session *Session) {
  574. ctx := r.Context()
  575. aimsid := r.URL.Query().Get("aimsid")
  576. buddyNames := targetNames(r)
  577. if len(buddyNames) == 0 {
  578. SendError(w, r, http.StatusBadRequest, "missing buddy names (t parameter)")
  579. return
  580. }
  581. if len(buddyNames) > maxTempBuddies {
  582. SendError(w, r, http.StatusBadRequest, fmt.Sprintf("too many buddy names (max %d)", maxTempBuddies))
  583. return
  584. }
  585. snac := wire.SNAC_0x03_0x0F_BuddyAddTempBuddies{}
  586. for _, buddyName := range buddyNames {
  587. snac.Buddies = append(snac.Buddies, struct {
  588. ScreenName string `oscar:"len_prefix=uint8"`
  589. }{ScreenName: buddyName})
  590. }
  591. if _, err := h.BuddyService.AddTempBuddies(ctx, session.OSCARSession, wire.SNACFrame{}, snac); err != nil {
  592. h.Logger.ErrorContext(ctx, "add temp buddies failed", "aimsid", aimsid, "err", err.Error())
  593. SendError(w, r, http.StatusInternalServerError, "unable to add temporary buddies")
  594. return
  595. }
  596. SendOK(w, r, nil, h.Logger)
  597. h.Logger.InfoContext(ctx, "temporary buddies added",
  598. "aimsid", aimsid,
  599. "buddies", buddyNames,
  600. "count", len(buddyNames),
  601. )
  602. }
  603. // RemoveTempBuddy handles GET /aim/removeTempBuddy requests.
  604. // This removes temporary session buddies added via addTempBuddy.
  605. func (h *AimHandler) RemoveTempBuddy(w http.ResponseWriter, r *http.Request, session *Session) {
  606. ctx := r.Context()
  607. aimsid := r.URL.Query().Get("aimsid")
  608. buddyNames := targetNames(r)
  609. if len(buddyNames) == 0 {
  610. SendError(w, r, http.StatusBadRequest, "missing buddy names (t parameter)")
  611. return
  612. }
  613. if len(buddyNames) > maxTempBuddies {
  614. SendError(w, r, http.StatusBadRequest, fmt.Sprintf("too many buddy names (max %d)", maxTempBuddies))
  615. return
  616. }
  617. snac := wire.SNAC_0x03_0x10_BuddyDelTempBuddies{}
  618. for _, buddyName := range buddyNames {
  619. snac.Buddies = append(snac.Buddies, struct {
  620. ScreenName string `oscar:"len_prefix=uint8"`
  621. }{ScreenName: buddyName})
  622. }
  623. if err := h.BuddyService.DelTempBuddies(ctx, session.OSCARSession, snac); err != nil {
  624. h.Logger.ErrorContext(ctx, "remove temp buddies failed", "aimsid", aimsid, "err", err.Error())
  625. SendError(w, r, http.StatusInternalServerError, "unable to remove temporary buddies")
  626. return
  627. }
  628. SendOK(w, r, nil, h.Logger)
  629. h.Logger.InfoContext(ctx, "temporary buddies removed",
  630. "aimsid", aimsid,
  631. "buddies", buddyNames,
  632. "count", len(buddyNames),
  633. )
  634. }
  635. // SetForwardDomain acknowledges the client's forward-domain registration.
  636. // The Web AIM client fires this once when the session goes online; name may be
  637. // the literal string "null" for local/dev servers.
  638. func (h *AimHandler) SetForwardDomain(w http.ResponseWriter, r *http.Request) {
  639. SendOK(w, r, nil, h.Logger)
  640. }
  641. // ReportAction acknowledges a client-side UI telemetry ping. The Web AIM client
  642. // fires this on menu clicks and similar interactions with an action param of the
  643. // form "type=click,id=block-user-chatmenu"; it ignores the response.
  644. func (h *AimHandler) ReportAction(w http.ResponseWriter, r *http.Request) {
  645. SendOK(w, r, nil, h.Logger)
  646. }
  647. // StoredDataItems is the client-side data blob store, which this server does
  648. // not keep, so it always answers with an empty items list.
  649. type StoredDataItems struct {
  650. Items []string `json:"items" xml:"items>item"`
  651. }
  652. // GetData returns empty client-side data blobs (buddy list favorites, etc.).
  653. func (h *AimHandler) GetData(w http.ResponseWriter, r *http.Request) {
  654. SendOK(w, r, &StoredDataItems{Items: []string{}}, h.Logger)
  655. }
  656. // StartOSCARSessionResponse represents the response for startOSCARSession endpoint.
  657. type StartOSCARSessionResponse struct {
  658. Response struct {
  659. StatusCode int `json:"statusCode" xml:"statusCode"`
  660. StatusText string `json:"statusText" xml:"statusText"`
  661. Data struct {
  662. Host string `json:"host" xml:"host"`
  663. Port int `json:"port" xml:"port"`
  664. Cookie string `json:"cookie" xml:"cookie"`
  665. // TLSCertName is the certificate name the client verifies BOS against.
  666. // Omitted rather than sent empty: its absence means connect in the clear.
  667. TLSCertName string `json:"tlsCertName,omitempty" xml:"tlsCertName,omitempty"`
  668. } `json:"data" xml:"data"`
  669. } `json:"response"`
  670. }
  671. // MarshalXML renders the envelope with the same flat root as BaseResponse.
  672. func (s StartOSCARSessionResponse) MarshalXML(e *xml.Encoder, _ xml.StartElement) error {
  673. return e.EncodeElement(s.Response, xml.StartElement{Name: xml.Name{Local: "response"}})
  674. }
  675. // StartOSCARSession handles GET /aim/startOSCARSession requests, which hand a
  676. // client that authenticated over HTTP the address of a BOS server and the
  677. // cookie to sign on with. The token in "a" is the auth cookie clientLogin
  678. // minted, already what BOS expects, so it is handed straight back.
  679. //
  680. // The sig_sha256 the client computes over the query string is not checked: that
  681. // signature is keyed by HMAC(password, sessionSecret), and clientLogin keeps
  682. // neither past the response.
  683. func (h *AimHandler) StartOSCARSession(w http.ResponseWriter, r *http.Request) {
  684. ctx := r.Context()
  685. h.Logger.InfoContext(ctx, "startOSCARSession requested",
  686. "method", r.Method,
  687. "remote_addr", r.RemoteAddr,
  688. "user_agent", r.UserAgent())
  689. params := r.URL.Query()
  690. token := params.Get("a")
  691. if token == "" {
  692. h.Logger.Warn("missing authentication token")
  693. SendError(w, r, http.StatusUnauthorized, "authentication token required")
  694. return
  695. }
  696. rawCookie, err := base64.URLEncoding.DecodeString(strings.TrimSpace(token))
  697. if err != nil {
  698. h.Logger.WarnContext(ctx, "invalid authentication token (base64)", "err", err.Error())
  699. SendError(w, r, http.StatusUnauthorized, "invalid or expired token")
  700. return
  701. }
  702. cookie, _, err := h.AuthService.CrackCookie(rawCookie)
  703. if err != nil {
  704. h.Logger.WarnContext(ctx, "invalid authentication token", "err", err.Error())
  705. SendError(w, r, http.StatusUnauthorized, "invalid or expired token")
  706. return
  707. }
  708. // Encryption the server cannot provide degrades to a plaintext host, which a
  709. // client doing opportunistic encryption expects when no certificate is named.
  710. // The sign-on cookie then crosses the wire in the clear, so the downgrade is
  711. // logged rather than left to be inferred from the absent tlsCertName.
  712. useTLS := parseBoolParam(params.Get("useTLS"))
  713. endpoint := h.BOSListener.PlainEndpoint()
  714. if useTLS {
  715. ssl, ok := h.BOSListener.SSLEndpoint()
  716. if !ok {
  717. h.Logger.WarnContext(ctx, "TLS requested but no SSL listener is configured, advertising a plaintext BOS host",
  718. "screen_name", cookie.ScreenName)
  719. useTLS = false
  720. } else {
  721. endpoint = ssl
  722. }
  723. }
  724. host, portStr, err := net.SplitHostPort(endpoint.AdvertisedHost())
  725. if err != nil {
  726. h.Logger.ErrorContext(ctx, "unable to split advertised BOS host", "err", err.Error())
  727. SendError(w, r, http.StatusInternalServerError, "internal server error")
  728. return
  729. }
  730. port, _ := strconv.Atoi(portStr)
  731. resp := &StartOSCARSessionResponse{}
  732. resp.Response.StatusCode = 200
  733. resp.Response.StatusText = "Ok"
  734. resp.Response.Data.Host = host
  735. resp.Response.Data.Port = port
  736. // Base64, the encoding the client decodes the cookie with.
  737. resp.Response.Data.Cookie = base64.StdEncoding.EncodeToString(rawCookie)
  738. if useTLS {
  739. // The advertised SSL host is the name the certificate is issued to.
  740. resp.Response.Data.TLSCertName = host
  741. }
  742. SendResponse(w, r, resp, h.Logger)
  743. h.Logger.InfoContext(ctx, "OSCAR session bridge created",
  744. "screen_name", cookie.ScreenName,
  745. "bos_host", host,
  746. "bos_port", port,
  747. "use_tls", useTLS)
  748. }
  749. // parseBoolParam parses a boolean parameter from query string.
  750. func parseBoolParam(value string) bool {
  751. value = strings.ToLower(value)
  752. return value == "true" || value == "1" || value == "yes"
  753. }
  754. // seedRateLimitAlert raises the client's rate limit alert when a session starts
  755. // on an account that is already rate limited.
  756. //
  757. // The monitor broadcasts transitions, not current state, so a session signing on
  758. // mid-limit missed the one that raised the alert — and the client's alert is
  759. // sticky, so the eventual "clear" would arrive with nothing to dismiss. An OSCAR
  760. // client learns the current state from the rate params it gets at handshake; this
  761. // is the Web API's equivalent.
  762. //
  763. // Only the limited state is seeded: alert is a warning the user cannot act on,
  764. // and seeding clear would render nothing.
  765. func seedRateLimitAlert(session *Session, classID wire.RateLimitClassID) {
  766. if classID == 0 {
  767. return
  768. }
  769. status := session.OSCARSession.Session().RateLimitStates()[classID-1].CurrentStatus
  770. if status != wire.RateLimitStatusLimited {
  771. return
  772. }
  773. session.EventQueue.Push(EventTypeRateLimit, RateLimitEvent{
  774. Classes: []RateLimitClass{
  775. {
  776. ID: int(classID),
  777. Status: rateLimitStatusName(status),
  778. },
  779. },
  780. })
  781. }
  782. // buildMyInfo assembles the shared base of a myInfo payload — the user's own
  783. // identity blob that the AIM client renders in its identity badge.
  784. //
  785. // It carries only fields that are safe to repeat on every myInfo: the client's
  786. // user-object merge deletes friendly and capabilities before merging, so both
  787. // must be present on each push or the badge loses them. Time-sensitive fields
  788. // (onlineTime, memberSince) are intentionally excluded — a mid-session refresh
  789. // omits them so the client keeps the signon time it already has; the
  790. // builders add them explicitly. buddyIcon is included only when non-empty; an
  791. // empty value would be dropped by the client merge anyway, and the placeholder
  792. // URL (not "") is what clears an icon. moodIcon is a parameter rather than a
  793. // field the callers set, because omitting it clears the user's mood.
  794. func buildMyInfo(screenName state.DisplayScreenName, webState, buddyIcon, moodIcon string) *MyInfo {
  795. return &MyInfo{
  796. AimID: screenName.IdentScreenName().String(),
  797. DisplayID: screenName.String(),
  798. Friendly: screenName.String(),
  799. State: webState,
  800. UserType: userTypeFor(screenName.IdentScreenName()),
  801. Service: serviceFor(screenName.IdentScreenName()),
  802. // Never nil: the client iterates capabilities unconditionally.
  803. Capabilities: []string{},
  804. Bot: false,
  805. BuddyIcon: buddyIcon,
  806. MoodIcon: moodIcon,
  807. }
  808. }
  809. func requestScheme(r *http.Request) string {
  810. if r.TLS != nil {
  811. return "https"
  812. }
  813. if proto := r.Header.Get("X-Forwarded-Proto"); proto != "" {
  814. return proto
  815. }
  816. return "http"
  817. }
  818. // baseURLFromRequest returns the absolute base URL the client reached this
  819. // server on, used to build asset URLs that the client loads directly.
  820. func baseURLFromRequest(r *http.Request) string {
  821. return fmt.Sprintf("%s://%s", requestScheme(r), r.Host)
  822. }