aim_handler.go 35 KB

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